*
lsh
2025-04-21 787ac0c93db67a3ead8e8dd306ad631ac8dd8a56
src/main/resources/mapper/CommandInfoMapper.xml
@@ -20,24 +20,24 @@
    <select id="selectByTaskNoAndWrkNo" resultMap="BaseResultMap">
        select * from "SOURCE"."wcs_command_info"
        where "wrk_no" = #{wrkNo}
        and "task_no" = #{taskNo}
        where "WRK_NO" = #{wrkNo}
        and "TASK_NO" = #{taskNo}
    </select>
    <select id="selectByWrkNo" resultMap="BaseResultMap">
        select * from "SOURCE"."wcs_command_info"
        where "wrk_no" = #{wrkNo}
        where "WRK_NO" = #{wrkNo}
    </select>
    <select id="selectByTaskNo" resultMap="BaseResultMap">
        select * from "SOURCE"."wcs_command_info"
        where "task_no" = #{taskNo}
        where "TASK_NO" = #{taskNo}
    </select>
    <select id="selectCompleteManualCommand" resultMap="BaseResultMap">
        select * from "SOURCE"."wcs_command_info"
        where "command_type" = 2
        and "command_status" = 3
        where "COMMAND_TYPE" = 2
        and "COMMAND_STATUS" = 3
    </select>
</mapper>