guoshilong
2023-04-28 0c3d84ee563d44e122bfe9c6517285de71f36b3b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package cn.gistack.sm.appmanage.service.impl;
 
import cn.gistack.sm.appmanage.entity.AppManage;
import cn.gistack.sm.appmanage.mapper.AppManageMapper;
import cn.gistack.sm.appmanage.service.IAppManageService;
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
import org.springblade.core.mp.base.BaseServiceImpl;
import org.springframework.stereotype.Service;
 
/**
 * @ClassName AppManageService
 * @Description TODO
 * @Author aix
 * @Date 2023/4/26 20:54
 * @Version 1.0
 */
@Service
public class AppManageService extends BaseServiceImpl<AppManageMapper, AppManage> implements IAppManageService {
    @Override
    public AppManage getLastInfo() {
        return baseMapper.getLastInfo();
    }
}