zhongrj
2023-04-28 b59efa774fbf19c39da44b6cb4f5c65f1f7e0d25
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package cn.gistack.sm.appmanage.mapper;
 
import cn.gistack.sm.appmanage.entity.AppManage;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
 
/**
 * @ClassName AppManageMapper
 * @Description TODO
 * @Author aix
 * @Date 2023/4/26 20:52
 * @Version 1.0
 */
public interface AppManageMapper extends BaseMapper<AppManage> {
    AppManage getLastInfo();
}