自动化立体仓库 - WMS系统
#
1
2 天以前 8b75fe61a3eefe36761aa0f82a79b59342aa6709
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.zy.asrs.service.impl;
 
import com.zy.asrs.mapper.BasArmMastLogMapper;
import com.zy.asrs.entity.BasArmMastLog;
import com.zy.asrs.service.BasArmMastLogService;
import com.baomidou.mybatisplus.service.impl.ServiceImpl;
import org.springframework.stereotype.Service;
 
@Service("basArmMastLogService")
public class BasArmMastLogServiceImpl extends ServiceImpl<BasArmMastLogMapper, BasArmMastLog> implements BasArmMastLogService {
    @Override
    public boolean save(Long id){
        return this.baseMapper.save(id);
    }
}