Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
amos-boot-biz
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
项目统一框架
amos-boot-biz
Commits
893a28bf
Commit
893a28bf
authored
Apr 14, 2025
by
suhuiguang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1.编辑功能调整
parent
4abe0b2d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
5 deletions
+12
-5
BaseController.java
...ejoin/amos/boot/biz/common/controller/BaseController.java
+4
-4
JgUseRegistrationServiceImpl.java
...ule/jg/biz/service/impl/JgUseRegistrationServiceImpl.java
+8
-1
No files found.
amos-boot-biz-common/src/main/java/com/yeejoin/amos/boot/biz/common/controller/BaseController.java
View file @
893a28bf
...
@@ -28,15 +28,15 @@ public class BaseController {
...
@@ -28,15 +28,15 @@ public class BaseController {
@Autowired
@Autowired
protected
HttpServletRequest
request
;
protected
HttpServletRequest
request
;
/**
* 企业
*/
public
static
final
String
COMPANY_TYPE_COMPANY
=
"company"
;
/**
/**
* 监管/行政审批局
* 监管/行政审批局
*/
*/
public
static
final
String
COMPANY_TYPE_SUPERVISION
=
"supervision"
;
public
static
final
String
COMPANY_TYPE_SUPERVISION
=
"supervision"
;
/**
* 企业
*/
public
static
final
String
COMPANY_TYPE_COMPANY
=
"company"
;
/**
/**
...
...
amos-boot-system-tzs/amos-boot-module-jg/amos-boot-module-jg-biz/src/main/java/com/yeejoin/amos/boot/module/jg/biz/service/impl/JgUseRegistrationServiceImpl.java
View file @
893a28bf
...
@@ -2134,12 +2134,19 @@ public class JgUseRegistrationServiceImpl extends BaseService<JgUseRegistrationD
...
@@ -2134,12 +2134,19 @@ public class JgUseRegistrationServiceImpl extends BaseService<JgUseRegistrationD
if
(!
StringUtils
.
isEmpty
(
jgUseRegistration
.
getProjectContraptionId
())){
if
(!
StringUtils
.
isEmpty
(
jgUseRegistration
.
getProjectContraptionId
())){
LambdaQueryWrapper
<
IdxBizJgProjectContraption
>
queryWrapper
=
new
LambdaQueryWrapper
<>();
LambdaQueryWrapper
<
IdxBizJgProjectContraption
>
queryWrapper
=
new
LambdaQueryWrapper
<>();
queryWrapper
.
eq
(
BaseEntity:
:
getSequenceNbr
,
jgUseRegistration
.
getProjectContraptionId
());
queryWrapper
.
eq
(
BaseEntity:
:
getSequenceNbr
,
jgUseRegistration
.
getProjectContraptionId
());
queryWrapper
.
select
(
IdxBizJgProjectContraption:
:
getEquListName
,
IdxBizJgProjectContraption:
:
getEquCategoryName
,
IdxBizJgProjectContraption:
:
getEquDefineName
,
BaseEntity:
:
getSequenceNbr
);
queryWrapper
.
select
(
IdxBizJgProjectContraption:
:
getEquListName
,
IdxBizJgProjectContraption:
:
getEquCategoryName
,
IdxBizJgProjectContraption:
:
getEquDefineName
,
BaseEntity:
:
getSequenceNbr
,
IdxBizJgProjectContraption:
:
getEquList
,
IdxBizJgProjectContraption:
:
getEquCategory
);
IdxBizJgProjectContraption
projectContraption
=
jgProjectContraptionService
.
getBaseMapper
().
selectOne
(
queryWrapper
);
IdxBizJgProjectContraption
projectContraption
=
jgProjectContraptionService
.
getBaseMapper
().
selectOne
(
queryWrapper
);
if
(
projectContraption
!=
null
){
if
(
projectContraption
!=
null
){
detail
.
put
(
"equListName"
,
projectContraption
.
getEquListName
());
detail
.
put
(
"equListName"
,
projectContraption
.
getEquListName
());
detail
.
put
(
"equCategoryName"
,
projectContraption
.
getEquCategoryName
());
detail
.
put
(
"equCategoryName"
,
projectContraption
.
getEquCategoryName
());
detail
.
put
(
"equDefineName"
,
projectContraption
.
getEquDefineName
());
detail
.
put
(
"equDefineName"
,
projectContraption
.
getEquDefineName
());
detail
.
putIfAbsent
(
"EQU_LIST_CODE"
,
projectContraption
.
getEquList
());
detail
.
putIfAbsent
(
"EQU_CATEGORY_CODE"
,
projectContraption
.
getEquCategory
());
}
}
}
}
}
}
...
...
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