1.完善模板解析功能
2.调整直连设备接入流程
This commit is contained in:
@@ -20,7 +20,7 @@ public class ClDevDto implements Serializable {
|
||||
|
||||
@SerializedName("Cldid")
|
||||
@NotEmpty(message = "逻辑子设备ID,不可为空")
|
||||
private String clDid;
|
||||
private Integer clDid;
|
||||
|
||||
@SerializedName("DevType")
|
||||
@ApiModelProperty(value = "逻辑子设备型号")
|
||||
|
||||
@@ -5,6 +5,8 @@ import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import com.github.jeffreyning.mybatisplus.anno.MppMultiId;
|
||||
import com.njcn.db.bo.BaseEntity;
|
||||
import java.io.Serializable;
|
||||
|
||||
import lombok.Data;
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
|
||||
@@ -16,8 +18,7 @@ import lombok.Setter;
|
||||
* @author xuyang
|
||||
* @since 2023-05-23
|
||||
*/
|
||||
@Getter
|
||||
@Setter
|
||||
@Data
|
||||
@TableName("cs_data_array")
|
||||
public class CsDataArrayPO extends BaseEntity {
|
||||
|
||||
|
||||
@@ -67,5 +67,20 @@ public class CsDataSetPO extends BaseEntity {
|
||||
*/
|
||||
private Integer storeFlag;
|
||||
|
||||
/**
|
||||
* 逻辑子设备id(从模板获取,主设备此字段没有值)
|
||||
*/
|
||||
private Integer clDev;
|
||||
|
||||
/**
|
||||
* 数据集类型(0:主设备 1:模块 2:监测设备)
|
||||
*/
|
||||
private Integer type;
|
||||
|
||||
/**
|
||||
* 数据模型
|
||||
*/
|
||||
private String dataList;
|
||||
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user