Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
黄嘉阳
/
iot-platform-server
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
77c8c30e
authored
Oct 31, 2023
by
huangjy
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
fix:设备其他信息新增字段
parent
215edc70
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
14 additions
and
1 deletions
db/上线后sql/update.sql
server-service/src/main/java/com/makeit/entity/platform/device/PlatDeviceOther.java
server-service/src/main/java/com/makeit/vo/platform/device/PlatDeviceViewVO.java
db/上线后sql/update.sql
0 → 100644
View file @
77c8c30e
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
server-service/src/main/java/com/makeit/entity/platform/device/PlatDeviceOther.java
View file @
77c8c30e
...
...
@@ -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
;
}
server-service/src/main/java/com/makeit/vo/platform/device/PlatDeviceViewVO.java
View file @
77c8c30e
...
...
@@ -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
;
/**
* 创建时间
*/
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment