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