公告板
版本库
filestore
活动
搜索
登录
徐仲培
/
lab
半试验仿真系统
概况
操作记录
提交次数
目录
文档
派生
对比
blame
|
历史
|
原始文档
更新
whycrzg
2021-03-31
9d1314ec569b55afbea9079c2b248f3cb6bd1dfc
[~whycxzp/lab.git]
/
src
/
main
/
java
/
com
/
whyc
/
mapper
/
DeviceInfMapper.java
1
2
3
4
5
6
7
8
9
10
package com.whyc.mapper;
import com.whyc.dto.DeviceTypeDTO;
import com.whyc.pojo.DeviceInf;
import java.util.List;
public interface DeviceInfMapper extends CustomMapper<DeviceInf> {
List<DeviceTypeDTO> getAll();
}