自动化立体仓库 - WMS系统
chen.llin
昨天 6246673dd42d9faeab27c1372e3eff6aa58d3f0c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.zy.asrs.service.impl;
 
import com.baomidou.mybatisplus.service.impl.ServiceImpl;
import com.zy.asrs.entity.CrnTiltRecord;
import com.zy.asrs.mapper.CrnTiltRecordMapper;
import com.zy.asrs.service.CrnTiltRecordService;
import org.springframework.stereotype.Service;
 
/**
 * 堆垛机倾斜度记录 Service 实现类
 */
@Service
public class CrnTiltRecordServiceImpl extends ServiceImpl<CrnTiltRecordMapper, CrnTiltRecord> implements CrnTiltRecordService {
 
}