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
bb9084a4
Commit
bb9084a4
authored
Dec 26, 2025
by
suhuiguang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
style(jg):代码调整
1.代码整理
parent
7662ed8d
Hide whitespace changes
Inline
Side-by-side
Showing
18 changed files
with
45 additions
and
55 deletions
+45
-55
JgResumeInfoMapper.xml
...e-jg-api/src/main/resources/mapper/JgResumeInfoMapper.xml
+1
-1
JgScrapCancelMapper.xml
...-jg-api/src/main/resources/mapper/JgScrapCancelMapper.xml
+1
-1
EquipUsedCheckStrategyContext.java
.../module/jg/biz/context/EquipUsedCheckStrategyContext.java
+1
-1
PieLineDataChangeServiceImpl.java
.../biz/edit/process/equip/PieLineDataChangeServiceImpl.java
+0
-1
EquipTransferEquipUsedCheckImpl.java
.../jg/biz/service/impl/EquipTransferEquipUsedCheckImpl.java
+3
-3
InstallNoticeEquipUsedCheckImpl.java
.../jg/biz/service/impl/InstallNoticeEquipUsedCheckImpl.java
+3
-3
JgCertificateReplenishEquipUsedCheckImpl.java
...ervice/impl/JgCertificateReplenishEquipUsedCheckImpl.java
+3
-12
JgChangeRegistrationEquipUsedCheckImpl.java
.../service/impl/JgChangeRegistrationEquipUsedCheckImpl.java
+3
-3
JgChangeRegistrationNameRegistrationUsedCheckImpl.java
...pl/JgChangeRegistrationNameRegistrationUsedCheckImpl.java
+3
-3
JgEnableDisableEquipUsedCheckImpl.java
...g/biz/service/impl/JgEnableDisableEquipUsedCheckImpl.java
+3
-3
JgOverDesignServiceLifeCheckImpl.java
...jg/biz/service/impl/JgOverDesignServiceLifeCheckImpl.java
+3
-3
JgScrapCancelEquipUsedCheckImpl.java
.../jg/biz/service/impl/JgScrapCancelEquipUsedCheckImpl.java
+3
-3
JgVehicleInformationEquipUsedCheckImpl.java
.../service/impl/JgVehicleInformationEquipUsedCheckImpl.java
+3
-3
MaintainNoticeEquipUsedCheckImpl.java
...jg/biz/service/impl/MaintainNoticeEquipUsedCheckImpl.java
+3
-3
MaintenanceContractEquipUsedCheckImpl.java
...z/service/impl/MaintenanceContractEquipUsedCheckImpl.java
+3
-3
ReformNoticeEquipUsedCheckImpl.java
...e/jg/biz/service/impl/ReformNoticeEquipUsedCheckImpl.java
+3
-3
TransferNoticeEquipUsedCheckImpl.java
...jg/biz/service/impl/TransferNoticeEquipUsedCheckImpl.java
+3
-3
UseRegisterEquipUsedCheckImpl.java
...le/jg/biz/service/impl/UseRegisterEquipUsedCheckImpl.java
+3
-3
No files found.
amos-boot-system-tzs/amos-boot-module-jg/amos-boot-module-jg-api/src/main/resources/mapper/JgResumeInfoMapper.xml
View file @
bb9084a4
...
...
@@ -15,7 +15,7 @@
FROM tzs_jg_resume_info
WHERE is_delete = '0' and
<foreach
collection=
"equIds"
item=
"id"
open=
"("
separator=
"or"
close=
")"
>
equ_id
like concat('%',
#{id}, '%')
equ_id
like concat('%',
#{id}, '%')
</foreach>
order by rec_date desc
</select>
...
...
amos-boot-system-tzs/amos-boot-module-jg/amos-boot-module-jg-api/src/main/resources/mapper/JgScrapCancelMapper.xml
View file @
bb9084a4
...
...
@@ -307,6 +307,6 @@
tzs_jg_scrap_cancel_eq b
where a.sequence_nbr = b.equip_transfer_id
and a.audit_status in ('三级待受理', '二级待受理', '一级待受理')
GROUP BY a.use_unit_code
GROUP BY a.use_unit_code
</select>
</mapper>
amos-boot-system-tzs/amos-boot-module-jg/amos-boot-module-jg-biz/src/main/java/com/yeejoin/amos/boot/module/jg/biz/context/EquipUsedCheckStrategyContext.java
View file @
bb9084a4
...
...
@@ -16,7 +16,7 @@ import java.util.Optional;
@Component
public
class
EquipUsedCheckStrategyContext
implements
ApplicationContextAware
{
private
static
Map
<
String
,
IEquipUsedCheck
>
iActionExecuteStrategyHashMap
=
new
HashMap
<>();
private
static
final
Map
<
String
,
IEquipUsedCheck
>
iActionExecuteStrategyHashMap
=
new
HashMap
<>();
public
static
IEquipUsedCheck
getUsedStrategy
(
String
bizType
)
{
...
...
amos-boot-system-tzs/amos-boot-module-jg/amos-boot-module-jg-biz/src/main/java/com/yeejoin/amos/boot/module/jg/biz/edit/process/equip/PieLineDataChangeServiceImpl.java
View file @
bb9084a4
...
...
@@ -298,7 +298,6 @@ public class PieLineDataChangeServiceImpl {
private
void
buildNewPieLineLog
(
ProjectContraptionChangeDataDto
projectContraptionChangeDataDto
,
String
record
,
List
<
FieldChangeMeta
>
allChangeColumns
,
PipelineChangeItemDto
newPieLine
)
{
FieldChangeMeta
fieldChangeMeta
=
new
FieldChangeMeta
();
fieldChangeMeta
.
setChangeId
(
projectContraptionChangeDataDto
.
getProjectContraptionId
());
fieldChangeMeta
.
setColumnKey
(
PIE_LINE_KEY
);
fieldChangeMeta
.
setColumnLabel
(
"管道新增"
);
fieldChangeMeta
.
setColumnType
(
"String"
);
...
...
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/EquipTransferEquipUsedCheckImpl.java
View file @
bb9084a4
...
...
@@ -19,11 +19,11 @@ import java.util.stream.Collectors;
@Slf4j
public
class
EquipTransferEquipUsedCheckImpl
extends
BaseEquipUsedCheckService
{
private
RedissonClient
redissonClient
;
private
final
RedissonClient
redissonClient
;
private
String
bizType
=
"equipmentHandover"
;
private
final
String
bizType
=
"equipmentHandover"
;
private
JgEquipTransferMapper
equipTransferMapper
;
private
final
JgEquipTransferMapper
equipTransferMapper
;
public
EquipTransferEquipUsedCheckImpl
(
RedissonClient
redissonClient
,
JgEquipTransferMapper
equipTransferMapper
)
{
this
.
redissonClient
=
redissonClient
;
...
...
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/InstallNoticeEquipUsedCheckImpl.java
View file @
bb9084a4
...
...
@@ -19,11 +19,11 @@ import java.util.stream.Collectors;
@Slf4j
public
class
InstallNoticeEquipUsedCheckImpl
extends
BaseEquipUsedCheckService
{
private
RedissonClient
redissonClient
;
private
final
RedissonClient
redissonClient
;
private
String
bizType
=
"installNotice"
;
private
final
String
bizType
=
"installNotice"
;
private
JgInstallationNoticeMapper
installationNoticeMapper
;
private
final
JgInstallationNoticeMapper
installationNoticeMapper
;
public
InstallNoticeEquipUsedCheckImpl
(
RedissonClient
redissonClient
,
JgInstallationNoticeMapper
installationNoticeMapper
)
{
this
.
redissonClient
=
redissonClient
;
...
...
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/JgCertificateReplenishEquipUsedCheckImpl.java
View file @
bb9084a4
package
com
.
yeejoin
.
amos
.
boot
.
module
.
jg
.
biz
.
service
.
impl
;
import
com.yeejoin.amos.boot.module.jg.api.dto.CompanyEquipCountDto
;
import
com.yeejoin.amos.boot.module.jg.api.mapper.JgCertificateReplenishMapper
;
import
com.yeejoin.amos.boot.module.jg.api.mapper.JgScrapCancelMapper
;
import
lombok.RequiredArgsConstructor
;
import
lombok.extern.slf4j.Slf4j
;
import
org.redisson.api.RBucket
;
import
org.redisson.api.RedissonClient
;
import
org.springframework.stereotype.Component
;
import
java.util.Arrays
;
import
java.util.List
;
import
java.util.Set
;
import
java.util.stream.Collectors
;
/**
* @author Administrator
*/
...
...
@@ -21,11 +12,11 @@ import java.util.stream.Collectors;
@Slf4j
public
class
JgCertificateReplenishEquipUsedCheckImpl
extends
BaseEquipUsedCheckService
{
private
RedissonClient
redissonClient
;
private
final
RedissonClient
redissonClient
;
private
String
bizType
=
"certReplenish"
;
private
final
String
bizType
=
"certReplenish"
;
private
JgCertificateReplenishMapper
mapper
;
private
final
JgCertificateReplenishMapper
mapper
;
public
JgCertificateReplenishEquipUsedCheckImpl
(
RedissonClient
redissonClient
,
JgCertificateReplenishMapper
mapper
)
{
this
.
redissonClient
=
redissonClient
;
...
...
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/JgChangeRegistrationEquipUsedCheckImpl.java
View file @
bb9084a4
...
...
@@ -21,11 +21,11 @@ import java.util.stream.Collectors;
@Slf4j
public
class
JgChangeRegistrationEquipUsedCheckImpl
extends
BaseEquipUsedCheckService
{
private
RedissonClient
redissonClient
;
private
final
RedissonClient
redissonClient
;
private
String
bizType
=
"changeRegistration"
;
private
final
String
bizType
=
"changeRegistration"
;
private
JgChangeRegistrationReformMapper
mapper
;
private
final
JgChangeRegistrationReformMapper
mapper
;
public
JgChangeRegistrationEquipUsedCheckImpl
(
RedissonClient
redissonClient
,
JgChangeRegistrationReformMapper
mapper
)
{
this
.
redissonClient
=
redissonClient
;
...
...
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/JgChangeRegistrationNameRegistrationUsedCheckImpl.java
View file @
bb9084a4
...
...
@@ -20,11 +20,11 @@ import java.util.stream.Collectors;
@Slf4j
public
class
JgChangeRegistrationNameRegistrationUsedCheckImpl
extends
BaseEquipUsedCheckService
{
private
RedissonClient
redissonClient
;
private
final
RedissonClient
redissonClient
;
private
String
bizType
=
"changeName"
;
private
final
String
bizType
=
"changeName"
;
private
JgChangeRegistrationNameMapper
mapper
;
private
final
JgChangeRegistrationNameMapper
mapper
;
public
JgChangeRegistrationNameRegistrationUsedCheckImpl
(
RedissonClient
redissonClient
,
JgChangeRegistrationNameMapper
mapper
)
{
this
.
redissonClient
=
redissonClient
;
...
...
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/JgEnableDisableEquipUsedCheckImpl.java
View file @
bb9084a4
...
...
@@ -20,11 +20,11 @@ import java.util.stream.Collectors;
@Slf4j
public
class
JgEnableDisableEquipUsedCheckImpl
extends
BaseEquipUsedCheckService
{
private
RedissonClient
redissonClient
;
private
final
RedissonClient
redissonClient
;
private
String
bizType
=
"deactivateEnable"
;
private
final
String
bizType
=
"deactivateEnable"
;
private
JgEnableDisableMapper
mapper
;
private
final
JgEnableDisableMapper
mapper
;
public
JgEnableDisableEquipUsedCheckImpl
(
RedissonClient
redissonClient
,
JgEnableDisableMapper
mapper
)
{
this
.
redissonClient
=
redissonClient
;
...
...
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/JgOverDesignServiceLifeCheckImpl.java
View file @
bb9084a4
...
...
@@ -18,11 +18,11 @@ import java.util.stream.Collectors;
@Slf4j
public
class
JgOverDesignServiceLifeCheckImpl
extends
BaseEquipUsedCheckService
{
private
RedissonClient
redissonClient
;
private
final
RedissonClient
redissonClient
;
private
String
bizType
=
"overDesignServiceLife"
;
private
final
String
bizType
=
"overDesignServiceLife"
;
private
JgOverDesignServiceLifeMapper
overDesignServiceLifeMapper
;
private
final
JgOverDesignServiceLifeMapper
overDesignServiceLifeMapper
;
public
JgOverDesignServiceLifeCheckImpl
(
RedissonClient
redissonClient
,
JgOverDesignServiceLifeMapper
overDesignServiceLifeMapper
)
{
this
.
redissonClient
=
redissonClient
;
...
...
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/JgScrapCancelEquipUsedCheckImpl.java
View file @
bb9084a4
...
...
@@ -19,11 +19,11 @@ import java.util.stream.Collectors;
@Slf4j
public
class
JgScrapCancelEquipUsedCheckImpl
extends
BaseEquipUsedCheckService
{
private
RedissonClient
redissonClient
;
private
final
RedissonClient
redissonClient
;
private
String
bizType
=
"jgScrapCancelAdd"
;
private
final
String
bizType
=
"jgScrapCancelAdd"
;
private
JgScrapCancelMapper
mapper
;
private
final
JgScrapCancelMapper
mapper
;
public
JgScrapCancelEquipUsedCheckImpl
(
RedissonClient
redissonClient
,
JgScrapCancelMapper
mapper
)
{
this
.
redissonClient
=
redissonClient
;
...
...
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/JgVehicleInformationEquipUsedCheckImpl.java
View file @
bb9084a4
...
...
@@ -20,11 +20,11 @@ import java.util.stream.Collectors;
@Slf4j
public
class
JgVehicleInformationEquipUsedCheckImpl
extends
BaseEquipUsedCheckService
{
private
RedissonClient
redissonClient
;
private
final
RedissonClient
redissonClient
;
private
String
bizType
=
"vehicleInformation"
;
private
final
String
bizType
=
"vehicleInformation"
;
private
JgVehicleInformationMapper
mapper
;
private
final
JgVehicleInformationMapper
mapper
;
public
JgVehicleInformationEquipUsedCheckImpl
(
RedissonClient
redissonClient
,
JgVehicleInformationMapper
mapper
)
{
this
.
redissonClient
=
redissonClient
;
...
...
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/MaintainNoticeEquipUsedCheckImpl.java
View file @
bb9084a4
...
...
@@ -19,11 +19,11 @@ import java.util.stream.Collectors;
@Slf4j
public
class
MaintainNoticeEquipUsedCheckImpl
extends
BaseEquipUsedCheckService
{
private
RedissonClient
redissonClient
;
private
final
RedissonClient
redissonClient
;
private
String
bizType
=
"maintainNotice"
;
private
final
String
bizType
=
"maintainNotice"
;
private
JgMaintainNoticeMapper
maintainNoticeMapper
;
private
final
JgMaintainNoticeMapper
maintainNoticeMapper
;
public
MaintainNoticeEquipUsedCheckImpl
(
RedissonClient
redissonClient
,
JgMaintainNoticeMapper
maintainNoticeMapper
)
{
this
.
redissonClient
=
redissonClient
;
...
...
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/MaintenanceContractEquipUsedCheckImpl.java
View file @
bb9084a4
...
...
@@ -19,11 +19,11 @@ import java.util.stream.Collectors;
@Slf4j
public
class
MaintenanceContractEquipUsedCheckImpl
extends
BaseEquipUsedCheckService
{
private
RedissonClient
redissonClient
;
private
final
RedissonClient
redissonClient
;
private
String
bizType
=
"maintenanceFiling"
;
private
final
String
bizType
=
"maintenanceFiling"
;
private
JgMaintenanceContractMapper
maintenanceContractMapper
;
private
final
JgMaintenanceContractMapper
maintenanceContractMapper
;
public
MaintenanceContractEquipUsedCheckImpl
(
RedissonClient
redissonClient
,
JgMaintenanceContractMapper
maintenanceContractMapper
)
{
this
.
redissonClient
=
redissonClient
;
...
...
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/ReformNoticeEquipUsedCheckImpl.java
View file @
bb9084a4
...
...
@@ -19,11 +19,11 @@ import java.util.stream.Collectors;
@Slf4j
public
class
ReformNoticeEquipUsedCheckImpl
extends
BaseEquipUsedCheckService
{
private
RedissonClient
redissonClient
;
private
final
RedissonClient
redissonClient
;
private
String
bizType
=
"renovationNoticeNew"
;
private
final
String
bizType
=
"renovationNoticeNew"
;
private
JgReformNoticeMapper
reformNoticeMapper
;
private
final
JgReformNoticeMapper
reformNoticeMapper
;
public
ReformNoticeEquipUsedCheckImpl
(
RedissonClient
redissonClient
,
JgReformNoticeMapper
reformNoticeMapper
)
{
this
.
redissonClient
=
redissonClient
;
...
...
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/TransferNoticeEquipUsedCheckImpl.java
View file @
bb9084a4
...
...
@@ -20,11 +20,11 @@ import java.util.stream.Collectors;
@Slf4j
public
class
TransferNoticeEquipUsedCheckImpl
extends
BaseEquipUsedCheckService
{
private
RedissonClient
redissonClient
;
private
final
RedissonClient
redissonClient
;
private
String
bizType
=
"transferNotice"
;
private
final
String
bizType
=
"transferNotice"
;
private
JgTransferNoticeMapper
noticeMapper
;
private
final
JgTransferNoticeMapper
noticeMapper
;
public
TransferNoticeEquipUsedCheckImpl
(
RedissonClient
redissonClient
,
JgTransferNoticeMapper
noticeMapper
)
{
this
.
redissonClient
=
redissonClient
;
...
...
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/UseRegisterEquipUsedCheckImpl.java
View file @
bb9084a4
...
...
@@ -19,11 +19,11 @@ import java.util.stream.Collectors;
@Slf4j
public
class
UseRegisterEquipUsedCheckImpl
extends
BaseEquipUsedCheckService
{
private
RedissonClient
redissonClient
;
private
final
RedissonClient
redissonClient
;
private
String
bizType
=
"useRegistration"
;
private
final
String
bizType
=
"useRegistration"
;
private
JgUseRegistrationMapper
useRegistrationMapper
;
private
final
JgUseRegistrationMapper
useRegistrationMapper
;
public
UseRegisterEquipUsedCheckImpl
(
RedissonClient
redissonClient
,
JgUseRegistrationMapper
useRegistrationMapper
)
{
this
.
redissonClient
=
redissonClient
;
...
...
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