#
mrzhssss
2022-03-24 4c1e8761e3fa0516d5e6d316e838e83c8e0f5edf
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();
    }
}