#
zzgtfwq
2 天以前 236edf0559e2d5a6031b1df56a69454baa0357e5
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>