#
zzgtfwq
7 天以前 9fd5e6fbcb1d8badf1835478d862ac40bfb60f3c
src/main/resources/mapper/TaskWrkMapper.xml
@@ -30,4 +30,22 @@
    </resultMap>
    <select id="selectByWrkNo" resultMap="BaseResultMap">
        select top 1 * from wcs_task_wrk
        where 1=1
          and "wrk_no" = #{wrkNo}
    </select>
    <select id="selectByTaskNo" resultMap="BaseResultMap">
        select top 1 * from wcs_task_wrk
        where 1=1
          and "task_no" = #{taskNo}
    </select>
    <insert id="saveToHistory">
        insert into "SOURCE"."wcs_task_wrk_log"
        select * from "SOURCE"."wcs_task_wrk"
        where "STATUS"=5
    </insert>
</mapper>