tjx
2 天以前 4cb1c6b66795468cbe361b66ae261159b7d9aedd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.hk.NumericalCollection.mapper;
 
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.hk.NumericalCollection.entity.Device;
 
/**
* @author Administrator
* @description 针对表【DEVICE(数采设备)】的数据库操作Mapper
* @createDate 2024-09-27 09:56:10
* @Entity generator.domain.Device
*/
public interface DeviceMapper extends BaseMapper<Device> {
 
}