#
zzgtfwq
1 天以前 236edf0559e2d5a6031b1df56a69454baa0357e5
src/main/resources/mapper/WrkMastStaMapper.xml
@@ -19,6 +19,7 @@
        <result column="bign_time" property="bignTime" />
        <result column="work_sta" property="workSta"/>
        <result column="rgv_no" property="rgvNo"/>
        <result column="mk" property="mk"/>
    </resultMap>
@@ -38,24 +39,31 @@
        and wrk_no = #{workNo}
    </select>
    <select id="selectNoInterfere" resultMap="BaseResultMap">
    <select id="selectByWrkNoPut" resultMap="BaseResultMap">
        select top 1 * from asr_wrk_mast_sta
        where 1=1
        and (sta_start in
        <foreach item="item" collection="staStarts" index="index" separator="," open="(" close=")">
            #{item}
        </foreach>
        or sta_start = 0
        )
        and (sta_end in
        <foreach item="item" collection="staEnds" index="index" separator="," open="(" close=")">
            #{item}
        </foreach>
        or sta_end = 0
        )
        and wrk_sts=0
        order by line_number,id
          and wrk_no = #{workNo}
          and wrk_sts = 1
    </select>
<!--    <select id="selectNoInterfere" resultMap="BaseResultMap">-->
<!--        select top 1 * from asr_wrk_mast_sta-->
<!--        where 1=1-->
<!--        and (sta_start in-->
<!--        <foreach item="item" collection="staStarts" index="index" separator="," open="(" close=")">-->
<!--            #{item}-->
<!--        </foreach>-->
<!--        or sta_start = 0-->
<!--        )-->
<!--        and (sta_end in-->
<!--        <foreach item="item" collection="staEnds" index="index" separator="," open="(" close=")">-->
<!--            #{item}-->
<!--        </foreach>-->
<!--        or sta_end = 0-->
<!--        )-->
<!--        and wrk_sts=0-->
<!--        order by line_number,id-->
<!--    </select>-->
    <select id="selectNoInterfereList" resultMap="BaseResultMap">
        select * from asr_wrk_mast_sta
@@ -95,10 +103,57 @@
        and wrk_no = #{workNo}
        order by line_number,id
    </select>
    <select id="selectNoInterfereCrn" resultMap="BaseResultMap">
        select * from asr_wrk_mast_sta
        where 1=1
        and (sta_start in
        <foreach item="item" collection="staStarts" index="index" separator="," open="(" close=")">
            #{item}
        </foreach>
        or sta_start = 0
        )
        and (sta_end in
        <foreach item="item" collection="staEnds" index="index" separator="," open="(" close=")">
            #{item}
        </foreach>
        or sta_end = 0
        )
        and wrk_sts=0
        and sta_end in (2006.2012,2018,2024,2030,1004,1014,1018,1028,1035)
        and wrk_no = #{workNo}
        order by
        case when mk = 1 then 0 else 1 end,
        line_number,
        id
    </select>
    <select id="selectNoInterfereToCrn" resultMap="BaseResultMap">
        select * from asr_wrk_mast_sta
        where 1=1
        and (sta_start in
        <foreach item="item" collection="staStarts" index="index" separator="," open="(" close=")">
            #{item}
        </foreach>
        or sta_start = 0
        )
        or sta_end = 0
        )
        and sta_end in (2018,1018)
        and wrk_sts=0
        and wrk_no = #{workNo}
        order by line_number,id
    </select>
    <select id="selectByWorkSta" resultMap="BaseResultMap">
        select top 1 * from asr_wrk_mast_sta
        where work_sta = #{workSta}
        and rgv_no = #{rgvNo}
    </select>
    <select id="selectByWorkStaList" resultMap="BaseResultMap">
        select * from asr_wrk_mast_sta
        where work_sta = #{workSta}
          and rgv_no = #{rgvNo}
        order by update_time
    </select>
    <select id="selectAllWrkCount" resultType="java.lang.Integer">
@@ -119,7 +174,27 @@
            and wrk_sts = #{wrkSts}
        </if>
    </select>
    <select id="selectLockWrk" resultMap="BaseResultMap">
        select * from asr_wrk_mast_sta
        where wrk_sts > 0
        and sta_end &lt; 2000
    </select>
    <select id="selectLockWrkT" resultMap="BaseResultMap">
        select * from asr_wrk_mast_sta
        where wrk_sts > 0
        and sta_end &gt; 2000
    </select>
    <select id="selectPakingWrk" resultMap="BaseResultMap">
        select * from asr_wrk_mast_sta
        where mk = 1
        and sta_start = #{staStart}
    </select>
    <select id="selectPakingWrkNum" resultMap="BaseResultMap">
        select * from asr_wrk_mast_sta
        where mk = 1
        and rgv_no = #{rgvNo}
    </select>