#
wang..123
2022-03-25 fe4646d6fe6144c8e1e1a13a999e6947f9d35640
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();
    }
}