自动化立体仓库 - WMS系统
#
1
7 天以前 0e1dcb25ccb0249b1b62a4fec7cb3154a50f7e69
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);
    }
}