1
zhang
2026-01-22 6876084ffc4a01c1eca6a609dec8c176efc59aae
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<?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.DevpMapper">
 
    <!-- 通用查询映射结果 -->
    <resultMap id="BaseResultMap" type="com.zy.asrs.entity.Devp">
        <id column="dev_no" property="devNo"/>
        <result column="dec_desc" property="decDesc"/>
        <result column="dev_mk" property="devMk"/>
        <result column="in_enable" property="inEnable"/>
        <result column="out_enable" property="outEnable"/>
        <result column="autoing" property="autoing"/>
        <result column="loading" property="loading"/>
        <result column="canining" property="canining"/>
        <result column="canouting" property="canouting"/>
        <result column="wrk_no" property="wrkNo"/>
        <result column="barcode" property="barcode"/>
    </resultMap>
 
    <select id="getAvailableInSite" resultType="java.lang.Integer">
        select abd.dev_no
        from asr_bas_devp abd
                 left join asr_sta_desc asd on abd.dev_no = asd.stn_no
        where 1 = 1
          and asd.type_no = #{typeNo}
          and abd.in_enable = 'Y'
        group by abd.dev_no
    </select>
 
    <select id="getAvailableOutSite" resultType="java.lang.Integer">
        select abd.dev_no
        from asr_bas_devp abd
                 left join asr_sta_desc asd on abd.dev_no = asd.stn_no
        where 1 = 1
          and asd.type_no = #{typeNo}
          and abd.out_enable = 'Y'
        group by abd.dev_no
    </select>
 
</mapper>