自动化立体仓库 - WMS系统
zyx
2023-10-12 d0e38da5f46c79a5fb675c36ae18c4fc3cebdf74
src/main/java/com/zy/asrs/service/impl/AgvWrkMastLogServiceImpl.java
@@ -1,6 +1,7 @@
package com.zy.asrs.service.impl;
import com.baomidou.mybatisplus.service.impl.ServiceImpl;
import com.zy.asrs.entity.AgvWrkMast;
import com.zy.asrs.entity.AgvWrkMastLog;
import com.zy.asrs.mapper.AgvWrkMastLogMapper;
import com.zy.asrs.service.AgvWrkMastLogService;
@@ -10,8 +11,8 @@
public class AgvWrkMastLogServiceImpl extends ServiceImpl<AgvWrkMastLogMapper, AgvWrkMastLog> implements AgvWrkMastLogService {
    @Override
    public boolean save(Integer workNo) {
        return this.baseMapper.save(workNo) > 0;
    public boolean save(AgvWrkMast agvWrkMast) {
        return this.baseMapper.saveByWrkMast(agvWrkMast) > 0;
    }
}