Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
one-certificate-system
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
赵啸非
one-certificate-system
Commits
e9a71445
Commit
e9a71445
authored
Jul 28, 2024
by
赵啸非
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
添加目录字段
parent
d2cdffbd
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
one-certificate-manager/src/main/java/com/mortals/xhx/module/certificate/web/CertificateCatalogController.java
.../module/certificate/web/CertificateCatalogController.java
+1
-1
one-certificate-manager/src/main/java/com/mortals/xhx/module/child/web/ChildLicenseController.java
.../mortals/xhx/module/child/web/ChildLicenseController.java
+1
-1
one-certificate-manager/src/test/java/com/mortals/httpclient/child/ChildLicenseController.http
.../com/mortals/httpclient/child/ChildLicenseController.http
+1
-1
No files found.
one-certificate-manager/src/main/java/com/mortals/xhx/module/certificate/web/CertificateCatalogController.java
View file @
e9a71445
...
...
@@ -55,7 +55,7 @@ public class CertificateCatalogController extends BaseCRUDJsonBodyMappingControl
this
.
addDict
(
model
,
"inspect"
,
IBaseEnum
.
getEnumMap
(
YesNoEnum
.
class
));
this
.
addDict
(
model
,
"documentId"
,
certificateDocumentService
.
find
(
new
CertificateDocumentQuery
())
.
stream
().
collect
(
Collectors
.
toMap
(
x
->
x
.
getId
(),
y
->
y
.
getDocumentName
(),(
o
,
n
)->
n
)));
.
stream
().
collect
(
Collectors
.
toMap
(
x
->
x
.
getId
()
.
toString
()
,
y
->
y
.
getDocumentName
(),(
o
,
n
)->
n
)));
super
.
init
(
model
,
context
);
}
...
...
one-certificate-manager/src/main/java/com/mortals/xhx/module/child/web/ChildLicenseController.java
View file @
e9a71445
...
...
@@ -59,7 +59,7 @@ public class ChildLicenseController extends BaseCRUDJsonBodyMappingController<Ch
this
.
addDict
(
model
,
"processStatus"
,
ProcessStatusEnum
.
getEnumMap
());
this
.
addDict
(
model
,
"documentId"
,
certificateDocumentService
.
find
(
new
CertificateDocumentQuery
())
.
stream
().
collect
(
Collectors
.
toMap
(
x
->
x
.
getId
(),
y
->
y
.
getDocumentName
(),
(
o
,
n
)
->
n
)));
.
stream
().
collect
(
Collectors
.
toMap
(
x
->
x
.
getId
()
.
toString
()
,
y
->
y
.
getDocumentName
(),
(
o
,
n
)
->
n
)));
super
.
init
(
model
,
context
);
...
...
one-certificate-manager/src/test/java/com/mortals/httpclient/child/ChildLicenseController.http
View file @
e9a71445
...
...
@@ -63,7 +63,7 @@ client.global.set("ChildLicense_id", JSON.parse(response.body).data.id);
%}
###行业许可子证查看
GET {{baseUrl}}/child/license/in
fo
?id=1
GET {{baseUrl}}/child/license/in
terview
?id=1
###行业许可子证编辑
GET {{baseUrl}}/child/license/edit?id=1
...
...
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