自动化立体仓库 - WMS系统
*
L
昨天 2ecb400719e0e2c403bc0999eb63f25b44a49c20
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);
    }
}