| | |
| | | |
| | | import com.baomidou.mybatisplus.mapper.BaseMapper; |
| | | import com.zy.asrs.entity.AgvWrkMast; |
| | | import org.apache.ibatis.annotations.Insert; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | |
| | | @Mapper |
| | | public interface AgvWrkMastMapper extends BaseMapper<AgvWrkMast> { |
| | | |
| | | @Insert("INSERT INTO agv_wrk_mast(wrk_sts," + |
| | | "io_type," + |
| | | "io_time," + |
| | | "io_pri," + |
| | | "source_loc_no," + |
| | | "loc_no," + |
| | | "barcode," + |
| | | "appe_user," + |
| | | "appe_time," + |
| | | "modi_user," + |
| | | "modi_time) " + |
| | | "VALUES(#{wrkSts},#{ioType},#{ioTime},#{ioPri},#{sourceLocNo},#{locNo},#{barcode},#{appeUser},#{appeTime},#{modiUser},#{modiTime})") |
| | | public int insertByIncrease(AgvWrkMast agvWrkMast); |
| | | |
| | | } |