1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
| package com.lxzn.modules.master.service;
|
| import com.baomidou.mybatisplus.extension.service.IService;
| import com.lxzn.modules.master.entity.Assembly2TcOpstate;
|
| import java.util.Map;
|
| /**
| * <p>
| * 服务类
| * </p>
| *
| * @author baomidou
| * @since 2025-09-03
| */
| public interface IAssembly2TcOpstateService extends IService<Assembly2TcOpstate> {
| /**
| * 查询上次采集的设备状态
| * @return
| */
| Map<String, Assembly2TcOpstate> listStateMap();
|
| }
|
|