Commit 77c8c30e by huangjy

fix:设备其他信息新增字段

parent 215edc70
ALTER TABLE `plat_device_other`
ALTER TABLE `plat_device_other`
ADD COLUMN `secure_id` varchar(255) COMMENT '密钥id' AFTER `protocol_password`,
ADD COLUMN `secure_key` varchar(255) COMMENT '密钥key' AFTER `secure_id`;
\ No newline at end of file
......@@ -55,6 +55,9 @@ public class PlatDeviceOther extends BaseBusEntity {
@ApiModelProperty(value = "协议密码")
private String protocolPassword;
@ApiModelProperty(value = "密钥id")
private String secureId;
@ApiModelProperty(value = "密钥Key")
private String secureKey;
}
......@@ -96,6 +96,11 @@ public class PlatDeviceViewVO extends BaseTenantDTO {
@ApiModelProperty(value = "协议密码")
private String protocolPassword;
@ApiModelProperty(value = "密钥id")
private String secureId;
@ApiModelProperty(value = "密钥Key")
private String secureKey;
/**
* 创建时间
*/
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment