IpAccountMapper.xml 402 B

1234567891011
  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.hr.repository.jpa.IpAccountRepository">
  6. <select id="queryList" resultType="com.hr.vo.IpAccountVO">
  7. select * from ip_account t where t.acc_no like '%'||:accNo||'%' and status in(:statusList)
  8. </select>
  9. </mapper>