zhangherong
3 天以前 0b8e5e2ee3c47e385816165826754d5cbb86faad
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();
 
}