| <?xml version="1.0" encoding="UTF-8"?> | 
| <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> | 
| <mapper namespace="com.zy.asrs.mapper.BasJarMastMapper"> | 
|   | 
|     <!-- 通用查询映射结果 --> | 
|     <resultMap id="BaseResultMap" type="com.zy.asrs.entity.BasJarMast"> | 
|         <id column="id" property="id" /> | 
|         <result column="wrk_no" property="wrkNo" /> | 
|         <result column="enter_sta_no" property="enterStaNo" /> | 
|         <result column="out_sta_no" property="outStaNo" /> | 
|         <result column="jar_enter_sta_no" property="jarEnterStaNo" /> | 
|         <result column="jar_out_sta_no" property="jarOutStaNo" /> | 
|         <result column="jar_id" property="jarId" /> | 
|         <result column="jar_regin" property="jarRegin" /> | 
|         <result column="status" property="status" /> | 
|         <result column="enter_ste_no" property="enterSteNo" /> | 
|         <result column="out_ste_id" property="outSteId" /> | 
|         <result column="enter_rgv_id" property="enterRgvId" /> | 
|         <result column="out_rgv_id" property="outRgvId" /> | 
|         <result column="io_time" property="ioTime" /> | 
|         <result column="modi_time" property="modiTime" /> | 
|         <result column="appe_time" property="appeTime" /> | 
|         <result column="jar_loc_digit" property="jarLocDigit" /> | 
|         <result column="burial" property="burial" /> | 
|   | 
|     </resultMap> | 
|   | 
|     <select id="getJarMastByWrkNo" resultMap="BaseResultMap"> | 
|         select top 1 * from asr_bas_jar_mast | 
|         where 1=1 | 
|           and wrk_no = #{wrkNo} | 
|         order by jar_loc_digit desc | 
|     </select> | 
|   | 
|     <select id="getJarMastByJarId" resultMap="BaseResultMap"> | 
|         select * from asr_bas_jar_mast | 
|         where 1=1 | 
|         and jar_id = #{jarId} | 
|         order by jar_loc_digit desc | 
|     </select> | 
|   | 
|     <select id="getJarMastByJarIdAndStatusList" resultMap="BaseResultMap"> | 
|         select * from asr_bas_jar_mast | 
|         where 1=1 | 
|           and | 
|             ( | 
|             status in | 
|             <foreach collection="statusList" item="status" index="index" open="(" close=")" separator=","> | 
|                 #{status} | 
|             </foreach> | 
|             ) | 
|           and jar_id = #{jarId} | 
|         order by jar_loc_digit desc | 
|     </select> | 
|   | 
|     <select id="getJarMastByJarIdMax" resultMap="BaseResultMap"> | 
|         select top 1 * from asr_bas_jar_mast | 
|         where 1=1 | 
|             and | 
|                 ( | 
|                 status in | 
|                 <foreach collection="statusList" item="status" index="index" open="(" close=")" separator=","> | 
|                     #{status} | 
|                 </foreach> | 
|                 ) | 
|           and jar_id = #{jarId} | 
|         order by jar_loc_digit desc | 
|     </select> | 
|   | 
|     <select id="getJarMastByJarIdMin" resultMap="BaseResultMap"> | 
|         select top 1 * from asr_bas_jar_mast | 
|         where 1=1 | 
|             and | 
|                 ( | 
|                 status in | 
|                 <foreach collection="statusList" item="status" index="index" open="(" close=")" separator=","> | 
|                     #{status} | 
|                 </foreach> | 
|                 ) | 
|           and jar_id = #{jarId} | 
|         order by jar_loc_digit asc | 
|     </select> | 
|   | 
|     <select id="getJarMastByJarIdCount" resultType="Integer"> | 
|         select count(1) from asr_bas_jar_mast | 
|         where 1=1 | 
|         and jar_id = #{jarId} | 
|     </select> | 
|   | 
|     <select id="selectJarMastOperationByStatusList" resultType="Integer"> | 
|         select count(1) from asr_bas_jar_mast | 
|         where 1=1 | 
|           and | 
|             ( | 
|             status in | 
|             <foreach collection="statusList" item="status" index="index" open="(" close=")" separator=","> | 
|                 #{status} | 
|             </foreach> | 
|             ) | 
|           and jar_id = #{jarId} | 
|         order by jar_loc_digit desc | 
|     </select> | 
|   | 
| </mapper> |