Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
chuanshan_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
廖旭伟
chuanshan_gov_platform
Commits
7f4890cc
Commit
7f4890cc
authored
Mar 21, 2023
by
廖旭伟
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
测试bug修改
parent
02626ec6
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
454 additions
and
229 deletions
+454
-229
knowledge-base/src/main/java/com/mortals/xhx/module/site/model/SiteMatterAssistEntity.java
...mortals/xhx/module/site/model/SiteMatterAssistEntity.java
+42
-21
knowledge-base/src/main/java/com/mortals/xhx/module/site/model/SiteMatterAssistQuery.java
.../mortals/xhx/module/site/model/SiteMatterAssistQuery.java
+300
-150
knowledge-base/src/main/resources/sqlmap/module/site/SiteMatterAssistMapper.xml
...n/resources/sqlmap/module/site/SiteMatterAssistMapper.xml
+112
-58
No files found.
knowledge-base/src/main/java/com/mortals/xhx/module/site/model/SiteMatterAssistEntity.java
View file @
7f4890cc
...
...
@@ -60,14 +60,18 @@ public class SiteMatterAssistEntity extends SiteMatterAssistVo {
* 联系电话
*/
private
String
telephone
;
/**
* 政务网地址
*/
private
String
govUrl
;
/**
* 事项来源
*/
private
Integer
source
;
/**
* 浏览次数
*/
private
Long
viewsCount
;
/**
* 政务网地址
*/
private
String
govUrl
;
...
...
@@ -226,20 +230,6 @@ public class SiteMatterAssistEntity extends SiteMatterAssistVo {
public
void
setTelephone
(
String
telephone
){
this
.
telephone
=
telephone
;
}
/**
* 获取 政务网地址
* @return String
*/
public
String
getGovUrl
(){
return
govUrl
;
}
/**
* 设置 政务网地址
* @param govUrl
*/
public
void
setGovUrl
(
String
govUrl
){
this
.
govUrl
=
govUrl
;
}
/**
* 获取 事项来源
* @return Integer
...
...
@@ -254,6 +244,34 @@ public class SiteMatterAssistEntity extends SiteMatterAssistVo {
public
void
setSource
(
Integer
source
){
this
.
source
=
source
;
}
/**
* 获取 浏览次数
* @return Long
*/
public
Long
getViewsCount
(){
return
viewsCount
;
}
/**
* 设置 浏览次数
* @param viewsCount
*/
public
void
setViewsCount
(
Long
viewsCount
){
this
.
viewsCount
=
viewsCount
;
}
/**
* 获取 政务网地址
* @return String
*/
public
String
getGovUrl
(){
return
govUrl
;
}
/**
* 设置 政务网地址
* @param govUrl
*/
public
void
setGovUrl
(
String
govUrl
){
this
.
govUrl
=
govUrl
;
}
...
...
@@ -287,8 +305,9 @@ public class SiteMatterAssistEntity extends SiteMatterAssistVo {
sb
.
append
(
",officeName:"
).
append
(
getOfficeName
());
sb
.
append
(
",dutyer:"
).
append
(
getDutyer
());
sb
.
append
(
",telephone:"
).
append
(
getTelephone
());
sb
.
append
(
",govUrl:"
).
append
(
getGovUrl
());
sb
.
append
(
",source:"
).
append
(
getSource
());
sb
.
append
(
",viewsCount:"
).
append
(
getViewsCount
());
sb
.
append
(
",govUrl:"
).
append
(
getGovUrl
());
return
sb
.
toString
();
}
...
...
@@ -316,8 +335,10 @@ public class SiteMatterAssistEntity extends SiteMatterAssistVo {
this
.
telephone
=
""
;
this
.
govUrl
=
""
;
this
.
source
=
null
;
this
.
viewsCount
=
0L
;
this
.
govUrl
=
""
;
}
}
\ No newline at end of file
knowledge-base/src/main/java/com/mortals/xhx/module/site/model/SiteMatterAssistQuery.java
View file @
7f4890cc
This diff is collapsed.
Click to expand it.
knowledge-base/src/main/resources/sqlmap/module/site/SiteMatterAssistMapper.xml
View file @
7f4890cc
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