Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
sample-form-platform
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
赵啸非
sample-form-platform
Commits
fe53c0fd
Commit
fe53c0fd
authored
Dec 08, 2023
by
赵啸非
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
添加热门事项
parent
47ed13b8
Changes
4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
1363 additions
and
1137 deletions
+1363
-1137
sample-form-manager/db/add.sql
sample-form-manager/db/add.sql
+4
-0
sample-form-manager/src/main/java/com/mortals/xhx/module/device/model/DeviceEntity.java
...ava/com/mortals/xhx/module/device/model/DeviceEntity.java
+40
-56
sample-form-manager/src/main/java/com/mortals/xhx/module/device/model/DeviceQuery.java
...java/com/mortals/xhx/module/device/model/DeviceQuery.java
+828
-772
sample-form-manager/src/main/resources/sqlmap/module/device/DeviceMapper.xml
.../src/main/resources/sqlmap/module/device/DeviceMapper.xml
+491
-309
No files found.
sample-form-manager/db/add.sql
View file @
fe53c0fd
...
...
@@ -54,3 +54,7 @@ CREATE TABLE mortals_xhx_matter_category(
`updateTime`
datetime
COMMENT
'更新时间'
,
PRIMARY
KEY
(
`id`
)
)
ENGINE
=
InnoDB
DEFAULT
CHARSET
=
utf8
COMMENT
=
'事项材料分类'
;
ALTER
TABLE
mortals_xhx_device
ADD
COLUMN
`belong`
varchar
(
64
)
CHARACTER
SET
utf8
COLLATE
utf8_general_ci
DEFAULT
NULL
COMMENT
'所属机构'
AFTER
deviceRemark
;
sample-form-manager/src/main/java/com/mortals/xhx/module/device/model/DeviceEntity.java
View file @
fe53c0fd
...
...
@@ -2,6 +2,9 @@ package com.mortals.xhx.module.device.model;
import
java.util.Date
;
import
java.util.List
;
import
java.util.ArrayList
;
import
java.math.BigDecimal
;
import
cn.hutool.core.date.DateUtil
;
import
java.util.Date
;
import
com.fasterxml.jackson.annotation.JsonFormat
;
import
com.mortals.framework.annotation.Excel
;
import
com.mortals.framework.model.BaseEntityLong
;
...
...
@@ -11,7 +14,7 @@ import lombok.Data;
* 设备实体对象
*
* @author zxfei
* @date 2023-
06-21
* @date 2023-
12-08
*/
@Data
public
class
DeviceEntity
extends
DeviceVo
{
...
...
@@ -45,6 +48,26 @@ public class DeviceEntity extends DeviceVo {
* 站点名称
*/
private
String
siteName
;
/**
* 设备生产厂商ID
*/
private
Long
deviceFirmId
;
/**
* 设备生产厂商名称
*/
private
String
deviceFirmname
;
/**
* 设备访问ip
*/
private
String
ip
;
/**
* 端口
*/
private
String
port
;
/**
* 启用状态 (0.停止,1.启用)
*/
private
Integer
enabled
;
/**
* 产品编码
*/
...
...
@@ -82,29 +105,9 @@ public class DeviceEntity extends DeviceVo {
*/
private
String
deviceRemark
;
/**
* 设备来源(0.旧设备,1.新设备)
*/
private
Integer
source
;
/**
* 设备生产厂商ID
*/
private
Long
deviceFirmId
;
/**
* 设备生产厂商名称
*/
private
String
deviceFirmname
;
/**
* 设备访问ip
*/
private
String
ip
;
/**
* 端口
* 所属机构
*/
private
String
port
;
/**
* 启用状态 (0.停止,1.启用)
*/
private
Integer
enabled
;
private
String
belong
;
/**
* 最近上线时间
*/
...
...
@@ -113,6 +116,10 @@ public class DeviceEntity extends DeviceVo {
* 最近离线时间
*/
private
Date
offlineTime
;
/**
* 设备来源(0.旧设备,1.新设备)
*/
private
Integer
source
;
@Override
public
int
hashCode
()
{
return
this
.
getId
().
hashCode
();
...
...
@@ -130,53 +137,30 @@ public class DeviceEntity extends DeviceVo {
}
public
void
initAttrValue
(){
this
.
deviceId
=
-
1L
;
this
.
deviceId
=
null
;
this
.
deviceName
=
""
;
this
.
deviceCode
=
""
;
this
.
deviceMac
=
""
;
this
.
siteId
=
-
1L
;
this
.
siteId
=
null
;
this
.
siteCode
=
""
;
this
.
siteName
=
""
;
this
.
deviceFirmId
=
null
;
this
.
deviceFirmname
=
""
;
this
.
ip
=
""
;
this
.
port
=
""
;
this
.
enabled
=
0
;
this
.
productCode
=
""
;
this
.
productName
=
""
;
this
.
deviceSrc
=
2
;
this
.
lon
=
""
;
this
.
lati
=
""
;
this
.
leadingOfficial
=
""
;
this
.
leadingOfficialTelephone
=
""
;
this
.
deviceStatus
=
0
;
this
.
deviceRemark
=
""
;
this
.
belong
=
""
;
this
.
onlineTime
=
new
Date
();
this
.
offlineTime
=
new
Date
();
this
.
source
=
1
;
this
.
deviceFirmId
=
-
1L
;
this
.
deviceFirmname
=
""
;
this
.
ip
=
""
;
this
.
port
=
""
;
this
.
enabled
=
0
;
this
.
onlineTime
=
null
;
this
.
offlineTime
=
null
;
}
}
\ No newline at end of file
sample-form-manager/src/main/java/com/mortals/xhx/module/device/model/DeviceQuery.java
View file @
fe53c0fd
This diff is collapsed.
Click to expand it.
sample-form-manager/src/main/resources/sqlmap/module/device/DeviceMapper.xml
View file @
fe53c0fd
This diff is collapsed.
Click to expand it.
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