wang..123
2022-03-17 a379484c4a8ac854c9420d66d322aa0358e57343
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();
    }
}