物消息路由模块、物解析模块提供接口

This commit is contained in:
2023-08-14 21:08:03 +08:00
parent 4d34ba1403
commit 6a01f8e0b1
17 changed files with 138 additions and 14 deletions

View File

@@ -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;
}

View File

@@ -63,7 +63,7 @@ public class CsDataSet extends BaseEntity {
/**
* 逻辑子设备id(从模板获取,主设备此字段没有值)
*/
private String clDev;
private Integer clDev;
/**
* 数据集类型(0:主设备 1:模块 2:监测设备)