1
2
3
4
5
6
7
8
9
10
11
12
13
14
| package com.hk.NumericalCollection.service;
|
|
| import com.baomidou.mybatisplus.extension.service.IService;
| import com.hk.NumericalCollection.entity.Device;
|
| /**
| * @author Administrator
| * @description 针对表【DEVICE(数采设备)】的数据库操作Service
| * @createDate 2024-09-27 09:56:10
| */
| public interface DeviceService extends IService<Device> {
|
| }
|
|