自动化立体仓库 - WMS系统
1
7 天以前 f0adc332d570cde0084bce7372ae7b9653b8c93b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.zy.asrs.service.impl;
 
import com.baomidou.mybatisplus.service.impl.ServiceImpl;
import com.zy.asrs.entity.WrkMastSta;
import com.zy.asrs.mapper.WrkMastStaMapper;
import com.zy.asrs.service.WrkMastStaService;
import org.springframework.stereotype.Service;
 
import java.util.List;
 
@Service("wrkMastStaService")
public class WrkMastStaServiceImpl extends ServiceImpl<WrkMastStaMapper, WrkMastSta> implements WrkMastStaService {
 
    @Override
    public List<WrkMastSta> selectToBeHistoryData() {
        return this.baseMapper.selectToBeHistoryData();
    }
}