AssoTaskPersonelMapper.xml 431 B

123456789
  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" >
  3. <mapper namespace="cn.cslg.report.mapper.AssoTaskPersonelMapper">
  4. <select id="getPatentNumber" resultType="java.lang.String">
  5. select PATENT_NO from ASSO_TASK_PERSONEL
  6. where PERSON_ID=#{personelId} and STATE=#{state} and TASK_ID=#{taskId}
  7. </select>
  8. </mapper>