xyc
2024-10-28 b02c7eb73aabc8531b6e52b02fc15489f0441b52
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.zt.life.core.dao;
 
import com.zt.common.dao.BaseDao;
import com.zt.life.core.model.Module;
import org.apache.ibatis.annotations.Mapper;
 
 
/**
 * 系统模型表:系统、设备…
 *
 * @author zt generator
 * @since 1.0.0 2020-07-23
 */
@Mapper
public interface ModuleDao extends BaseDao<Module> {
 
}