自动化立体仓库 - WCS系统
Junjie
2023-05-22 6e65e575aedd776432cda5a88f7434320f42e3f4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.zy.asrs.mapper;
 
import com.zy.asrs.entity.WmsWrkLog;
import com.baomidou.mybatisplus.mapper.BaseMapper;
import org.apache.ibatis.annotations.Insert;
import org.apache.ibatis.annotations.Mapper;
import org.springframework.stereotype.Repository;
 
@Mapper
@Repository
public interface WmsWrkLogMapper extends BaseMapper<WmsWrkLog> {
 
    @Insert("insert into wcs_wms_wrk_log select * from wcs_wms_wrk where wms_wrk_no=#{wmsWrkNo}")
    int save(Integer wmsWrkNo);
 
}