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
54d013ac
Commit
54d013ac
authored
Jun 24, 2022
by
赵啸非
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/master'
parents
661c8adf
b8d43cf7
Changes
4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
908 additions
and
908 deletions
+908
-908
portal-manager/doc/api.md
portal-manager/doc/api.md
+5
-5
portal-manager/src/main/java/com/mortals/xhx/module/apps/model/AppsEntity.java
...in/java/com/mortals/xhx/module/apps/model/AppsEntity.java
+85
-85
portal-manager/src/main/java/com/mortals/xhx/module/apps/model/AppsQuery.java
...ain/java/com/mortals/xhx/module/apps/model/AppsQuery.java
+402
-402
portal-manager/src/main/resources/sqlmap/module/apps/AppsMapper.xml
...ager/src/main/resources/sqlmap/module/apps/AppsMapper.xml
+416
-416
No files found.
portal-manager/doc/api.md
View file @
54d013ac
...
...
@@ -3181,7 +3181,7 @@ data|object|数据对象
 data|array|结果集列表|数组
  id|Long|主键,自增长
  name|String|应用名称
  
code|String|应用编码
  
imgPath|String|图标地址
  url|String|连接地址
  status|Integer|状态,0暂未开通,1已开通
  sortNum|Integer|排序号
...
...
@@ -3213,7 +3213,7 @@ dict|object|字典对象
"siteId": null,
"idList": null,
"name": "基础设置",
"
code
": "testCode",
"
imgPath
": "testCode",
"url": "testUrl",
"status": 1,
"sortNum": 0,
...
...
@@ -3231,7 +3231,7 @@ dict|object|字典对象
"siteId": null,
"idList": null,
"name": "预约系统",
"
code
": "testCode",
"
imgPath
": "testCode",
"url": "testUrl",
"status": 0,
"sortNum": 0,
...
...
@@ -3249,7 +3249,7 @@ dict|object|字典对象
"siteId": null,
"idList": null,
"name": "排号系统",
"
code
": "testCode",
"
imgPath
": "testCode",
"url": "testUrl",
"status": 1,
"sortNum": 0,
...
...
@@ -3267,7 +3267,7 @@ dict|object|字典对象
"siteId": null,
"idList": null,
"name": "评价系统",
"
code
": "testCode",
"
imgPath
": "testCode",
"url": "testUrl",
"status": 0,
"sortNum": 0,
...
...
portal-manager/src/main/java/com/mortals/xhx/module/apps/model/AppsEntity.java
View file @
54d013ac
...
...
@@ -7,160 +7,160 @@ import com.mortals.framework.annotation.Excel;
import
com.mortals.framework.model.BaseEntityLong
;
import
com.mortals.xhx.module.apps.model.vo.AppsVo
;
/**
* 系统应用列实体对象
*
* @author zxfei
* @date 2022-06-22
*/
* 系统应用列实体对象
*
* @author zxfei
* @date 2022-06-23
*/
public
class
AppsEntity
extends
AppsVo
{
private
static
final
long
serialVersionUID
=
1L
;
/**
* 应用名称
*/
* 应用名称
*/
private
String
name
;
/**
* 应用编码
*/
private
String
code
;
* 图标
*/
private
String
imgPath
;
/**
* 连接地址
*/
* 连接地址
*/
private
String
url
;
/**
* 状态,0暂未开通,1已开通
*/
* 状态,0暂未开通,1已开通
*/
private
Integer
status
;
/**
* 排序号
*/
* 排序号
*/
private
Integer
sortNum
;
/**
* 描述
*/
* 描述
*/
private
String
remark
;
/**
* 创建用户名称
*/
* 创建用户名称
*/
private
String
createUserName
;
/**
* 更新用户名称
*/
* 更新用户名称
*/
private
String
updateUserName
;
public
AppsEntity
(){}
/**
* 获取 应用名称
* @return String
*/
* 获取 应用名称
* @return String
*/
public
String
getName
(){
return
name
;
}
/**
* 设置 应用名称
* @param name
*/
* 设置 应用名称
* @param name
*/
public
void
setName
(
String
name
){
this
.
name
=
name
;
}
/**
* 获取 应用编码
* @return String
*/
public
String
get
Code
(){
return
code
;
* 获取 图标
* @return String
*/
public
String
get
ImgPath
(){
return
imgPath
;
}
/**
* 设置 应用编码
* @param code
*/
public
void
set
Code
(
String
code
){
this
.
code
=
code
;
* 设置 图标
* @param imgPath
*/
public
void
set
ImgPath
(
String
imgPath
){
this
.
imgPath
=
imgPath
;
}
/**
* 获取 连接地址
* @return String
*/
* 获取 连接地址
* @return String
*/
public
String
getUrl
(){
return
url
;
}
/**
* 设置 连接地址
* @param url
*/
* 设置 连接地址
* @param url
*/
public
void
setUrl
(
String
url
){
this
.
url
=
url
;
}
/**
* 获取 状态,0暂未开通,1已开通
* @return Integer
*/
* 获取 状态,0暂未开通,1已开通
* @return Integer
*/
public
Integer
getStatus
(){
return
status
;
}
/**
* 设置 状态,0暂未开通,1已开通
* @param status
*/
* 设置 状态,0暂未开通,1已开通
* @param status
*/
public
void
setStatus
(
Integer
status
){
this
.
status
=
status
;
}
/**
* 获取 排序号
* @return Integer
*/
* 获取 排序号
* @return Integer
*/
public
Integer
getSortNum
(){
return
sortNum
;
}
/**
* 设置 排序号
* @param sortNum
*/
* 设置 排序号
* @param sortNum
*/
public
void
setSortNum
(
Integer
sortNum
){
this
.
sortNum
=
sortNum
;
}
/**
* 获取 描述
* @return String
*/
* 获取 描述
* @return String
*/
public
String
getRemark
(){
return
remark
;
}
/**
* 设置 描述
* @param remark
*/
* 设置 描述
* @param remark
*/
public
void
setRemark
(
String
remark
){
this
.
remark
=
remark
;
}
/**
* 获取 创建用户名称
* @return String
*/
* 获取 创建用户名称
* @return String
*/
public
String
getCreateUserName
(){
return
createUserName
;
}
/**
* 设置 创建用户名称
* @param createUserName
*/
* 设置 创建用户名称
* @param createUserName
*/
public
void
setCreateUserName
(
String
createUserName
){
this
.
createUserName
=
createUserName
;
}
/**
* 获取 更新用户名称
* @return String
*/
* 获取 更新用户名称
* @return String
*/
public
String
getUpdateUserName
(){
return
updateUserName
;
}
/**
* 设置 更新用户名称
* @param updateUserName
*/
* 设置 更新用户名称
* @param updateUserName
*/
public
void
setUpdateUserName
(
String
updateUserName
){
this
.
updateUserName
=
updateUserName
;
}
...
...
@@ -170,7 +170,7 @@ public class AppsEntity extends AppsVo {
@Override
public
int
hashCode
()
{
return
this
.
getId
().
hashCode
();
return
this
.
getId
().
hashCode
();
}
@Override
public
boolean
equals
(
Object
obj
)
{
...
...
@@ -178,7 +178,7 @@ public class AppsEntity extends AppsVo {
if
(
obj
instanceof
AppsEntity
)
{
AppsEntity
tmp
=
(
AppsEntity
)
obj
;
if
(
this
.
getId
()
==
tmp
.
getId
())
{
return
true
;
return
true
;
}
}
return
false
;
...
...
@@ -187,7 +187,7 @@ public class AppsEntity extends AppsVo {
public
String
toString
(){
StringBuilder
sb
=
new
StringBuilder
(
""
);
sb
.
append
(
",name:"
).
append
(
getName
());
sb
.
append
(
",
code:"
).
append
(
getCode
());
sb
.
append
(
",
imgPath:"
).
append
(
getImgPath
());
sb
.
append
(
",url:"
).
append
(
getUrl
());
sb
.
append
(
",status:"
).
append
(
getStatus
());
sb
.
append
(
",sortNum:"
).
append
(
getSortNum
());
...
...
@@ -199,20 +199,20 @@ public class AppsEntity extends AppsVo {
public
void
initAttrValue
(){
this
.
name
=
""
;
this
.
name
=
""
;
this
.
code
=
""
;
this
.
imgPath
=
""
;
this
.
url
=
""
;
this
.
url
=
""
;
this
.
status
=
0
;
this
.
status
=
0
;
this
.
sortNum
=
0
;
this
.
sortNum
=
0
;
this
.
remark
=
""
;
this
.
remark
=
""
;
this
.
createUserName
=
""
;
this
.
createUserName
=
""
;
this
.
updateUserName
=
""
;
this
.
updateUserName
=
""
;
}
}
\ No newline at end of file
portal-manager/src/main/java/com/mortals/xhx/module/apps/model/AppsQuery.java
View file @
54d013ac
This diff is collapsed.
Click to expand it.
portal-manager/src/main/resources/sqlmap/module/apps/AppsMapper.xml
View file @
54d013ac
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