1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
| package com.ycl.platform.service;
|
| import com.ycl.platform.domain.entity.DeviceInfo;
| import com.baomidou.mybatisplus.extension.service.IService;
|
| /**
| * 国标级联同步数据 服务类
| *
| * @author xp
| * @since 2024-08-21
| */
| public interface DeviceInfoService extends IService<DeviceInfo> {
|
|
| }
|
|