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