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
4050e31f
Commit
4050e31f
authored
Aug 23, 2023
by
廖旭伟
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
应用集市列表增加应用code
parent
d2767159
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
1 deletion
+12
-1
sst-manager/src/main/java/com/mortals/xhx/module/apps/model/AppsInfoEntity.java
...ava/com/mortals/xhx/module/apps/model/AppsInfoEntity.java
+11
-1
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.
sst-manager/src/main/java/com/mortals/xhx/module/apps/model/AppsInfoEntity.java
View file @
4050e31f
...
...
@@ -41,6 +41,11 @@ public class AppsInfoEntity extends AppsInfoVo {
*/
private
Integer
classify
;
/**
* 应用编码
*/
private
String
appCode
;
public
AppsInfoEntity
(){}
...
...
@@ -129,8 +134,13 @@ public class AppsInfoEntity extends AppsInfoVo {
this
.
classify
=
classify
;
}
public
String
getAppCode
()
{
return
appCode
;
}
public
void
setAppCode
(
String
appCode
)
{
this
.
appCode
=
appCode
;
}
@Override
public
int
hashCode
()
{
...
...
sst-manager/src/main/java/com/mortals/xhx/module/apps/service/impl/AppsInfoServiceImpl.java
View file @
4050e31f
...
...
@@ -117,6 +117,7 @@ public class AppsInfoServiceImpl extends AbstractCRUDServiceImpl<AppsInfoDao, Ap
}
AppsInfoEntity
appsInfoEntity
=
new
AppsInfoEntity
();
appsInfoEntity
.
setId
(
pdu
.
getId
());
appsInfoEntity
.
setAppCode
(
pdu
.
getAppCode
());
appsInfoEntity
.
setName
(
pdu
.
getAppName
());
appsInfoEntity
.
setDescribe
(
pdu
.
getSummary
());
appsInfoEntity
.
setIcon
(
pdu
.
getAppIconPath
());
...
...
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