自动化立体仓库 - WMS系统
#
luxiaotao1123
2024-01-30 2e7a31b3e84c3e7ed0842b913402045ad99f255a
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);
}