| | |
| | | package com.zy.asrs.mapper; |
| | | |
| | | import com.baomidou.mybatisplus.mapper.BaseMapper; |
| | | import com.zy.asrs.entity.AgvWrkMast; |
| | | import com.zy.asrs.entity.AgvWrkMastLog; |
| | | import org.apache.ibatis.annotations.Insert; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | |
| | | @Insert("insert into agv_wrk_mast_log select * from agv_wrk_mast where wrk_no=#{workNo}") |
| | | int save(Integer workNo); |
| | | |
| | | @Insert("INSERT INTO agv_wrk_mast_log(wrk_no,wrk_sts," + |
| | | "io_type," + |
| | | "io_time," + |
| | | "io_pri," + |
| | | "source_loc_no," + |
| | | "loc_no," + |
| | | "barcode," + |
| | | "manu_type," + |
| | | "appe_user," + |
| | | "appe_time," + |
| | | "modi_user," + |
| | | "modi_time) " + |
| | | "VALUES(#{wrkNo},#{wrkSts},#{ioType},#{ioTime},#{ioPri},#{sourceLocNo},#{locNo},#{barcode},#{manuType},#{appeUser},#{appeTime},#{modiUser},#{modiTime})") |
| | | int saveByWrkMast(AgvWrkMast agvWrkMast); |
| | | |
| | | } |