#
luxiaotao1123
2022-01-20 42a61c4290684fb6453c9218049557dd85dc6bd7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package zy.cloud.wms.system.service.impl;
 
import com.baomidou.mybatisplus.service.impl.ServiceImpl;
import zy.cloud.wms.system.entity.Host;
import zy.cloud.wms.system.mapper.HostMapper;
import zy.cloud.wms.system.service.HostService;
import org.springframework.stereotype.Service;
 
@Service("hostService")
public class HostServiceImpl extends ServiceImpl<HostMapper, Host> implements HostService {
 
    @Override
    public Host getTop1() {
        return this.baseMapper.selectTop1();
    }
}