Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
self-service
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
廖旭伟
self-service
Commits
d40fa024
Commit
d40fa024
authored
Feb 21, 2023
by
廖旭伟
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
应用实体增加属性字段
parent
58368c15
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
18 additions
and
0 deletions
+18
-0
common-lib/src/main/java/com/mortals/xhx/common/pdu/app/AppPdu.java
.../src/main/java/com/mortals/xhx/common/pdu/app/AppPdu.java
+12
-0
sst-manager/src/main/java/com/mortals/xhx/module/apps/model/vo/AppsInfoVo.java
...java/com/mortals/xhx/module/apps/model/vo/AppsInfoVo.java
+5
-0
sst-manager/src/main/java/com/mortals/xhx/module/apps/service/impl/AppsInfoServiceImpl.java
...als/xhx/module/apps/service/impl/AppsInfoServiceImpl.java
+1
-0
No files found.
common-lib/src/main/java/com/mortals/xhx/common/pdu/app/AppPdu.java
View file @
d40fa024
...
@@ -92,6 +92,11 @@ public class AppPdu extends BaseEntityLong {
...
@@ -92,6 +92,11 @@ public class AppPdu extends BaseEntityLong {
*/
*/
private
Integer
dataUpdate
;
private
Integer
dataUpdate
;
/**
* 自主应用访问地址
*/
private
String
custUrl
;
public
AppPdu
(){}
public
AppPdu
(){}
/**
/**
...
@@ -375,6 +380,13 @@ public class AppPdu extends BaseEntityLong {
...
@@ -375,6 +380,13 @@ public class AppPdu extends BaseEntityLong {
this
.
dataUpdate
=
dataUpdate
;
this
.
dataUpdate
=
dataUpdate
;
}
}
public
String
getCustUrl
()
{
return
custUrl
;
}
public
void
setCustUrl
(
String
custUrl
)
{
this
.
custUrl
=
custUrl
;
}
@Override
@Override
public
int
hashCode
()
{
public
int
hashCode
()
{
...
...
sst-manager/src/main/java/com/mortals/xhx/module/apps/model/vo/AppsInfoVo.java
View file @
d40fa024
...
@@ -22,4 +22,9 @@ public class AppsInfoVo extends BaseEntityLong {
...
@@ -22,4 +22,9 @@ public class AppsInfoVo extends BaseEntityLong {
* 类型(1.应用程序,2.url)
* 类型(1.应用程序,2.url)
*/
*/
private
Integer
appType
;
private
Integer
appType
;
/**
* 自主应用访问地址
*/
private
String
custUrl
;
}
}
\ No newline at end of file
sst-manager/src/main/java/com/mortals/xhx/module/apps/service/impl/AppsInfoServiceImpl.java
View file @
d40fa024
...
@@ -118,6 +118,7 @@ public class AppsInfoServiceImpl extends AbstractCRUDServiceImpl<AppsInfoDao, Ap
...
@@ -118,6 +118,7 @@ public class AppsInfoServiceImpl extends AbstractCRUDServiceImpl<AppsInfoDao, Ap
appsInfoEntity
.
setUrl
(
pdu
.
getUrl
());
appsInfoEntity
.
setUrl
(
pdu
.
getUrl
());
appsInfoEntity
.
setAppType
(
pdu
.
getAppType
());
appsInfoEntity
.
setAppType
(
pdu
.
getAppType
());
appsInfoEntity
.
setServiceApi
(
pdu
.
getServiceApi
());
appsInfoEntity
.
setServiceApi
(
pdu
.
getServiceApi
());
appsInfoEntity
.
setCustUrl
(
pdu
.
getCustUrl
());
return
appsInfoEntity
;
return
appsInfoEntity
;
}
}
}
}
\ No newline at end of file
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