物消息路由模块、物解析模块提供接口
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
package com.njcn.csdevice.pojo.param;
|
||||
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* 类的介绍:
|
||||
*
|
||||
* @author xuyang
|
||||
* @version 1.0.0
|
||||
* @createTime 2023/8/14 15:30
|
||||
*/
|
||||
@Data
|
||||
public class DataArrayParam {
|
||||
|
||||
@ApiModelProperty("设备识别码")
|
||||
private String id;
|
||||
|
||||
@ApiModelProperty("逻辑设备id")
|
||||
private Integer did;
|
||||
|
||||
@ApiModelProperty("逻辑子设备id")
|
||||
private Integer cldId;
|
||||
|
||||
@ApiModelProperty("数据类型")
|
||||
private String statMethod;
|
||||
}
|
||||
@@ -63,7 +63,7 @@ public class CsDataSet extends BaseEntity {
|
||||
/**
|
||||
* 逻辑子设备id(从模板获取,主设备此字段没有值)
|
||||
*/
|
||||
private String clDev;
|
||||
private Integer clDev;
|
||||
|
||||
/**
|
||||
* 数据集类型(0:主设备 1:模块 2:监测设备)
|
||||
|
||||
Reference in New Issue
Block a user