1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
| package cn.gistack.sm.appmanage.service;
|
| import cn.gistack.sm.appmanage.entity.AppManage;
| import org.springblade.core.mp.base.BaseService;
|
| /**
| * @ClassName IAppmanageService
| * @Description TODO
| * @Author aix
| * @Date 2023/4/26 20:53
| * @Version 1.0
| */
| public interface IAppManageService extends BaseService<AppManage> {
| /**
| * 获取最新的数据
| * @return
| */
| AppManage getLastInfo();
| }
|
|