*
lsh
2025-04-01 b424d6493efb60cb8d93a2e16526086da1fc2ea9
src/main/resources/mapper/WrkDetlMapper.xml
@@ -27,14 +27,14 @@
    </resultMap>
    <select id="findByWorkNo" resultMap="BaseResultMap">
        select wrk_no, matnr, maktx, anfme from asr_wrk_detl where 1=1 and wrk_no = #{workNo}
        select "wrk_no", "matnr", "maktx", "anfme" from "SOURCE"."asr_wrk_detl" where 1=1 and "wrk_no" = #{workNo}
    </select>
    <update id="updateIoTime">
        update asr_wrk_detl
        set io_time = #{ioTime}
        update "SOURCE"."asr_wrk_detl"
        set "io_time" = #{ioTime}
        where 1=1
        and wrk_no = #{workNo}
        and "wrk_no" = #{workNo}
    </update>
</mapper>