Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
smart_gov_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
赵啸非
smart_gov_platform
Commits
680464c1
Commit
680464c1
authored
Mar 09, 2024
by
赵啸非
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
添加大厅入住事项
parent
d0c80a6d
Changes
4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
667 additions
and
438 deletions
+667
-438
base-manager/db/add.sql
base-manager/db/add.sql
+7
-1
base-manager/src/main/java/com/mortals/xhx/module/site/model/SiteMatterEntity.java
...a/com/mortals/xhx/module/site/model/SiteMatterEntity.java
+11
-6
base-manager/src/main/java/com/mortals/xhx/module/site/model/SiteMatterQuery.java
...va/com/mortals/xhx/module/site/model/SiteMatterQuery.java
+419
-269
base-manager/src/main/resources/sqlmap/module/site/SiteMatterMapper.xml
...rc/main/resources/sqlmap/module/site/SiteMatterMapper.xml
+230
-162
No files found.
base-manager/db/add.sql
View file @
680464c1
...
@@ -235,4 +235,10 @@ ALTER TABLE mortals_sys_site_matter ADD COLUMN `agentPost` varchar(64) CO
...
@@ -235,4 +235,10 @@ ALTER TABLE mortals_sys_site_matter ADD COLUMN `agentPost` varchar(64) CO
UPDATE
mortals_sys_skin_base
SET
imageResolution
=
"1920x1080"
WHERE
imageResolution
=
"1"
;
UPDATE
mortals_sys_skin_base
SET
imageResolution
=
"1920x1080"
WHERE
imageResolution
=
"1"
;
UPDATE
mortals_sys_skin_base
SET
imageResolution
=
"1080x1920"
WHERE
imageResolution
=
"2"
;
UPDATE
mortals_sys_skin_base
SET
imageResolution
=
"1080x1920"
WHERE
imageResolution
=
"2"
;
UPDATE
mortals_sys_skin_base
SET
imageResolution
=
"1280x1280"
WHERE
imageResolution
=
"3"
;
UPDATE
mortals_sys_skin_base
SET
imageResolution
=
"1280x1280"
WHERE
imageResolution
=
"3"
;
\ No newline at end of file
-- ----------------------------
2024
-
03
-
08
-- ----------------------------
ALTER
TABLE
mortals_sys_site_matter
ADD
COLUMN
`hallCheckIn`
tinyint
(
2
)
DEFAULT
'0'
COMMENT
'大厅事项入驻(0.否,1.是)'
AFTER
agentPost
;
base-manager/src/main/java/com/mortals/xhx/module/site/model/SiteMatterEntity.java
View file @
680464c1
...
@@ -13,7 +13,7 @@ import lombok.Data;
...
@@ -13,7 +13,7 @@ import lombok.Data;
* 站点事项实体对象
* 站点事项实体对象
*
*
* @author zxfei
* @author zxfei
* @date 2024-0
1-04
* @date 2024-0
3-09
*/
*/
@Data
@Data
public
class
SiteMatterEntity
extends
SiteMatterVo
{
public
class
SiteMatterEntity
extends
SiteMatterVo
{
...
@@ -35,6 +35,10 @@ public class SiteMatterEntity extends SiteMatterVo {
...
@@ -35,6 +35,10 @@ public class SiteMatterEntity extends SiteMatterVo {
* 事项名称
* 事项名称
*/
*/
private
String
matterName
;
private
String
matterName
;
/**
* 事项编码
*/
private
String
matterCode
;
/**
/**
* 部门ID
* 部门ID
*/
*/
...
@@ -43,10 +47,6 @@ public class SiteMatterEntity extends SiteMatterVo {
...
@@ -43,10 +47,6 @@ public class SiteMatterEntity extends SiteMatterVo {
* 部门名称
* 部门名称
*/
*/
private
String
deptName
;
private
String
deptName
;
/**
* 事项编码
*/
private
String
matterCode
;
/**
/**
* 事项类型
* 事项类型
*/
*/
...
@@ -83,6 +83,10 @@ public class SiteMatterEntity extends SiteMatterVo {
...
@@ -83,6 +83,10 @@ public class SiteMatterEntity extends SiteMatterVo {
* 职务
* 职务
*/
*/
private
String
agentPost
;
private
String
agentPost
;
/**
* 大厅事项入驻(0.否,1.是)
*/
private
Integer
hallCheckIn
;
@Override
@Override
public
int
hashCode
()
{
public
int
hashCode
()
{
return
this
.
getId
().
hashCode
();
return
this
.
getId
().
hashCode
();
...
@@ -104,9 +108,9 @@ public class SiteMatterEntity extends SiteMatterVo {
...
@@ -104,9 +108,9 @@ public class SiteMatterEntity extends SiteMatterVo {
this
.
siteName
=
""
;
this
.
siteName
=
""
;
this
.
matterId
=
null
;
this
.
matterId
=
null
;
this
.
matterName
=
""
;
this
.
matterName
=
""
;
this
.
matterCode
=
""
;
this
.
deptId
=
null
;
this
.
deptId
=
null
;
this
.
deptName
=
""
;
this
.
deptName
=
""
;
this
.
matterCode
=
""
;
this
.
eventTypeShow
=
""
;
this
.
eventTypeShow
=
""
;
this
.
source
=
0
;
this
.
source
=
0
;
this
.
hot
=
0
;
this
.
hot
=
0
;
...
@@ -116,5 +120,6 @@ public class SiteMatterEntity extends SiteMatterVo {
...
@@ -116,5 +120,6 @@ public class SiteMatterEntity extends SiteMatterVo {
this
.
agentName
=
""
;
this
.
agentName
=
""
;
this
.
agentPhone
=
""
;
this
.
agentPhone
=
""
;
this
.
agentPost
=
""
;
this
.
agentPost
=
""
;
this
.
hallCheckIn
=
0
;
}
}
}
}
\ No newline at end of file
base-manager/src/main/java/com/mortals/xhx/module/site/model/SiteMatterQuery.java
View file @
680464c1
This diff is collapsed.
Click to expand it.
base-manager/src/main/resources/sqlmap/module/site/SiteMatterMapper.xml
View file @
680464c1
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