MQTT通讯联调

This commit is contained in:
2023-08-09 20:31:51 +08:00
parent b32cf6c486
commit 123fdf4f04
12 changed files with 70 additions and 16 deletions

View File

@@ -51,9 +51,6 @@ public class CsDevModelAddParm {
@ApiModelProperty(value = "装置模板文件路径")
private String filePath;
@ApiModelProperty(value = "系统软件表Id")
private String softInfoId;
@ApiModelProperty(value = "模板类型(0:治理类型 1:电能质量类型)")
private Integer type;
}

View File

@@ -113,4 +113,10 @@ public class CsEquipmentDeliveryAddParm{
@ApiModelProperty(value="装置接入方式")
private String devAccessMethod;
/**
* 软件信息表id
*/
@ApiModelProperty(value="软件信息")
private String softinfoId;
}

View File

@@ -117,4 +117,10 @@ public class CsEquipmentDeliveryAuditParm {
@TableField(value = "run_status")
private Integer runStatus;
/**
* 软件信息表id
*/
@ApiModelProperty(value="软件信息")
private String softinfoId;
}

View File

@@ -68,16 +68,12 @@ public class CsDevModelPO extends BaseEntity {
@TableField(value = "file_path")
private String filePath;
/**
* 状态(0删除 1正常)
*/
@TableField(value = "status")
private String status;
@TableField(value = "soft_info_id")
private String softInfoId;
@TableField(value = "type")
@ApiModelProperty("模板类型(0:治理类型 1:电能质量类型)")
private Integer type;

View File

@@ -126,5 +126,11 @@ public class CsEquipmentDeliveryPO extends BaseEntity {
@TableField(value = "run_status")
private Integer runStatus;
/**
* 设备软件信息id
*/
@TableField(value = "softinfo_id")
private String softinfoId;
}

View File

@@ -7,8 +7,6 @@ import com.baomidou.mybatisplus.annotation.TableName;
import com.njcn.db.bo.BaseEntity;
import lombok.Data;
import java.math.BigDecimal;
/**
*
* Description:
@@ -48,19 +46,19 @@ public class CsLinePO extends BaseEntity {
* 电压等级
*/
@TableField(value = "vol_grade")
private String volGrade;
private Double volGrade;
/**
* PT变比
*/
@TableField(value = "pt_ratio")
private BigDecimal ptRatio;
private Double ptRatio;
/**
* CT变比
*/
@TableField(value = "ct_ratio")
private BigDecimal ctRatio;
private Double ctRatio;
/**
* 状态(0删除 1正常)
@@ -68,5 +66,11 @@ public class CsLinePO extends BaseEntity {
@TableField(value = "`status`")
private Integer status;
/**
* 接线方式(0-星型 1-角型 2-V型)
*/
@TableField(value = "conType")
private Integer conType;
}