EmplsMapper.xml 361 B

12345678910
  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <!DOCTYPE mapper
  3. PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
  4. "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
  5. <mapper namespace="com.ruoyi.system.mapper.EmplsMapper">
  6. <select id="getByEmpl" resultType="java.lang.Long">
  7. select emtlId from EMPLS where emplId = #{userName}
  8. </select>
  9. </mapper>