自动化立体仓库 - WMS系统
#
luxiaotao1123
2020-08-31 ea7e9e6b45dba0b287d3a71b4fa6d5a13af300d6
src/main/java/com/zy/asrs/mapper/WrkDetlLogMapper.java
@@ -2,6 +2,7 @@
import com.zy.asrs.entity.WrkDetlLog;
import com.baomidou.mybatisplus.mapper.BaseMapper;
import org.apache.ibatis.annotations.Insert;
import org.apache.ibatis.annotations.Mapper;
import org.springframework.stereotype.Repository;
@@ -9,4 +10,7 @@
@Repository
public interface WrkDetlLogMapper extends BaseMapper<WrkDetlLog> {
    @Insert("insert into asr_wrk_detl_log select * from asr_wrk_detl where wrk_no=#{workNo}")
    int save(Integer workNo);
}