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
f18ba12f
Commit
f18ba12f
authored
May 23, 2025
by
suhuiguang
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'develop_tzs_register' of…
Merge branch 'develop_tzs_register' of
http://39.100.92.250:5000/moa/amos-boot-biz
into develop_tzs_register
parents
74f71d2f
d8cb0896
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
34 additions
and
16 deletions
+34
-16
JgChangeRegistrationUnitServiceImpl.java
...biz/service/impl/JgChangeRegistrationUnitServiceImpl.java
+16
-14
JgInstallationNoticeServiceImpl.java
.../jg/biz/service/impl/JgInstallationNoticeServiceImpl.java
+3
-1
JgMaintenanceContractServiceImpl.java
...jg/biz/service/impl/JgMaintenanceContractServiceImpl.java
+1
-0
JgOverDesignServiceLifeServiceImpl.java
.../biz/service/impl/JgOverDesignServiceLifeServiceImpl.java
+1
-0
JgUseRegistrationServiceImpl.java
...ule/jg/biz/service/impl/JgUseRegistrationServiceImpl.java
+3
-0
JgVehicleInformationServiceImpl.java
.../jg/biz/service/impl/JgVehicleInformationServiceImpl.java
+2
-0
JgResumeInfoDto.java
...join/amos/boot/module/jyjc/api/model/JgResumeInfoDto.java
+3
-0
JyjcInspectionApplicationServiceImpl.java
...iz/service/impl/JyjcInspectionApplicationServiceImpl.java
+5
-1
No files found.
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/JgChangeRegistrationUnitServiceImpl.java
View file @
f18ba12f
...
@@ -1168,8 +1168,10 @@ public class JgChangeRegistrationUnitServiceImpl extends BaseService<JgChangeReg
...
@@ -1168,8 +1168,10 @@ public class JgChangeRegistrationUnitServiceImpl extends BaseService<JgChangeReg
taskName1
=
processTaskDTO
.
getNextTask
().
get
(
0
).
getName
();
taskName1
=
processTaskDTO
.
getNextTask
().
get
(
0
).
getName
();
nextTaskId
=
processTaskDTO
.
getNextTask
().
get
(
0
).
getId
();
nextTaskId
=
processTaskDTO
.
getNextTask
().
get
(
0
).
getId
();
}
}
registration
.
setStatus
(
taskName
[
0
]);
registration
.
setStatus
(
taskName
[
0
]);
JgRegistrationHistory
history
=
registrationHistoryService
.
lambdaQuery
()
.
eq
(
JgRegistrationHistory:
:
getCurrentDocumentId
,
registration
.
getApplyNo
())
.
eq
(
JgRegistrationHistory:
:
getIsDelete
,
false
).
one
();
if
(
"0"
.
equals
(
op
))
{
if
(
"0"
.
equals
(
op
))
{
if
(
roleList
.
isEmpty
())
{
if
(
roleList
.
isEmpty
())
{
registration
.
setStatus
(
taskName
[
0
]);
registration
.
setStatus
(
taskName
[
0
]);
...
@@ -1225,26 +1227,17 @@ public class JgChangeRegistrationUnitServiceImpl extends BaseService<JgChangeReg
...
@@ -1225,26 +1227,17 @@ public class JgChangeRegistrationUnitServiceImpl extends BaseService<JgChangeReg
);
);
}
}
//场车更新车牌号
//场车更新车牌号
if
(
"5000"
.
equals
(
dto
.
getEquList
())){
if
(
"5000"
.
equals
(
dto
.
getEquListCode
())
&&
newCarNumber
!=
null
&&
useCode
!=
null
){
if
(
newCarNumber
!=
null
&&
useCode
!=
null
){
idxBizJgRegisterInfoService
.
update
(
new
IdxBizJgRegisterInfo
().
setCarNumber
(
newCarNumber
),
idxBizJgRegisterInfoService
.
update
(
new
LambdaQueryWrapper
<
IdxBizJgRegisterInfo
>().
in
(
IdxBizJgRegisterInfo:
:
getUseOrgCode
,
useCode
)
new
IdxBizJgRegisterInfo
()
.
setCarNumber
(
newCarNumber
),
new
LambdaQueryWrapper
<
IdxBizJgRegisterInfo
>()
.
in
(
IdxBizJgRegisterInfo:
:
getUseOrgCode
,
useCode
)
);
);
}
}
}
});
});
registration
.
setNextTaskId
(
nextTaskId
);
registration
.
setNextTaskId
(
nextTaskId
);
updateTaskModel
(
registration
,
op
);
updateTaskModel
(
registration
,
op
);
//新增使用登记证和设备变更记录
//新增使用登记证和设备变更记录
this
.
saveRecord
(
registration
);
this
.
saveRecord
(
registration
);
JgRegistrationHistory
history
=
registrationHistoryService
.
lambdaQuery
()
.
eq
(
JgRegistrationHistory:
:
getCurrentDocumentId
,
registration
.
getApplyNo
())
.
eq
(
JgRegistrationHistory:
:
getIsDelete
,
false
)
.
one
();
JSONArray
historyJson
=
JSON
.
parseArray
(
history
.
getChangeData
());
JSONArray
historyJson
=
JSON
.
parseArray
(
history
.
getChangeData
());
// 更新历史表中一二级审批车牌号
// 更新历史表中一二级审批车牌号
history
.
setChangeData
(
JSONObject
.
toJSONString
(
dto
.
getRegistrationList
()));
history
.
setChangeData
(
JSONObject
.
toJSONString
(
dto
.
getRegistrationList
()));
...
@@ -1259,6 +1252,14 @@ public class JgChangeRegistrationUnitServiceImpl extends BaseService<JgChangeReg
...
@@ -1259,6 +1252,14 @@ public class JgChangeRegistrationUnitServiceImpl extends BaseService<JgChangeReg
registrationManage
.
setReceiveCompanyCode
(
registration
.
getReceiveOrgCode
());
registrationManage
.
setReceiveCompanyCode
(
registration
.
getReceiveOrgCode
());
registrationManage
.
setAuditPassDate
(
registration
.
getAuditPassDate
());
registrationManage
.
setAuditPassDate
(
registration
.
getAuditPassDate
());
registrationManage
.
setVersion
(
registrationManage
.
getVersion
()
+
1
);
registrationManage
.
setVersion
(
registrationManage
.
getVersion
()
+
1
);
if
(
"5000"
.
equals
(
registrationManage
.
getEquListCode
()))
{
String
targetCode
=
registrationManage
.
getUseRegistrationCode
();
dto
.
getRegistrationList
().
stream
()
.
filter
(
item
->
targetCode
.
equals
(
item
.
get
(
"useRegistrationCode"
)))
.
map
(
item
->
String
.
valueOf
(
item
.
get
(
"newCarNumber"
)))
.
findFirst
()
.
ifPresent
(
registrationManage:
:
setCarNumber
);
}
registrationManage
.
setChangeReason
(
BusinessTypeEnum
.
JG_COMPANY_CHANGE_REGISTRATION
.
getName
());
registrationManage
.
setChangeReason
(
BusinessTypeEnum
.
JG_COMPANY_CHANGE_REGISTRATION
.
getName
());
if
(!
ObjectUtils
.
isEmpty
(
registration
.
getNewUseUnitCreditCode
()))
{
//回填新单位地址
if
(!
ObjectUtils
.
isEmpty
(
registration
.
getNewUseUnitCreditCode
()))
{
//回填新单位地址
TzBaseEnterpriseInfo
useCodeResult
=
tzBaseEnterpriseInfoMapper
.
selectOne
(
new
QueryWrapper
<
TzBaseEnterpriseInfo
>().
eq
(
"use_unit_code"
,
registration
.
getNewUseUnitCreditCode
()));
TzBaseEnterpriseInfo
useCodeResult
=
tzBaseEnterpriseInfoMapper
.
selectOne
(
new
QueryWrapper
<
TzBaseEnterpriseInfo
>().
eq
(
"use_unit_code"
,
registration
.
getNewUseUnitCreditCode
()));
...
@@ -1281,6 +1282,8 @@ public class JgChangeRegistrationUnitServiceImpl extends BaseService<JgChangeReg
...
@@ -1281,6 +1282,8 @@ public class JgChangeRegistrationUnitServiceImpl extends BaseService<JgChangeReg
registration
.
setNextTaskId
(
nextTaskId
);
registration
.
setNextTaskId
(
nextTaskId
);
registration
.
setStatus
(
WorkFlowStatusEnum
.
getMessage
(
taskCode
).
getPass
());
registration
.
setStatus
(
WorkFlowStatusEnum
.
getMessage
(
taskCode
).
getPass
());
executeOneStep
(
registration
,
taskName1
,
nextUserIds
,
op
);
executeOneStep
(
registration
,
taskName1
,
nextUserIds
,
op
);
history
.
setChangeData
(
JSONObject
.
toJSONString
(
dto
.
getRegistrationList
()));
registrationHistoryService
.
updateById
(
history
);
}
}
}
else
{
}
else
{
registration
.
setPromoter
(
""
);
registration
.
setPromoter
(
""
);
...
@@ -1291,7 +1294,6 @@ public class JgChangeRegistrationUnitServiceImpl extends BaseService<JgChangeReg
...
@@ -1291,7 +1294,6 @@ public class JgChangeRegistrationUnitServiceImpl extends BaseService<JgChangeReg
executeOneStep
(
registration
,
taskName1
,
nextUserIds
,
op
);
executeOneStep
(
registration
,
taskName1
,
nextUserIds
,
op
);
}
}
JgChangeRegistrationUnitMapper
.
updateById
(
registration
);
JgChangeRegistrationUnitMapper
.
updateById
(
registration
);
// redis流程实时数据更新
// redis流程实时数据更新
commonServiceImpl
.
saveExecuteFlowData2Redis
(
dto
.
getInstanceId
(),
this
.
buildInstanceRuntimeData
(
registration
));
commonServiceImpl
.
saveExecuteFlowData2Redis
(
dto
.
getInstanceId
(),
this
.
buildInstanceRuntimeData
(
registration
));
this
.
delRepeatUseEquipData
(
registration
.
getApplyNo
(),
registration
.
getStatus
(),
registration
.
getNewUseUnitCreditCode
());
this
.
delRepeatUseEquipData
(
registration
.
getApplyNo
(),
registration
.
getStatus
(),
registration
.
getNewUseUnitCreditCode
());
...
...
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/JgInstallationNoticeServiceImpl.java
View file @
f18ba12f
...
@@ -1314,6 +1314,7 @@ public class JgInstallationNoticeServiceImpl extends BaseService<JgInstallationN
...
@@ -1314,6 +1314,7 @@ public class JgInstallationNoticeServiceImpl extends BaseService<JgInstallationN
.
approvalUnit
(
jgInstallationNotice
.
getReceiveOrgName
())
.
approvalUnit
(
jgInstallationNotice
.
getReceiveOrgName
())
.
approvalUnitCode
(
jgInstallationNotice
.
getReceiveOrgCreditCode
())
.
approvalUnitCode
(
jgInstallationNotice
.
getReceiveOrgCreditCode
())
.
status
(
"正常"
)
.
status
(
"正常"
)
.
changeContent
(
BusinessTypeEnum
.
JG_INSTALLATION_NOTIFICATION
.
getName
()
+
"业务办理"
)
.
routePath
(
taskV2Model1
.
getRoutePath
())
.
routePath
(
taskV2Model1
.
getRoutePath
())
.
build
()));
.
build
()));
}
else
{
}
else
{
...
@@ -1400,7 +1401,8 @@ public class JgInstallationNoticeServiceImpl extends BaseService<JgInstallationN
...
@@ -1400,7 +1401,8 @@ public class JgInstallationNoticeServiceImpl extends BaseService<JgInstallationN
.
approvalUnit
(
jgInstallationNotice
.
getReceiveOrgName
())
.
approvalUnit
(
jgInstallationNotice
.
getReceiveOrgName
())
.
approvalUnitCode
(
jgInstallationNotice
.
getReceiveOrgCreditCode
())
.
approvalUnitCode
(
jgInstallationNotice
.
getReceiveOrgCreditCode
())
.
status
(
"正常"
)
.
status
(
"正常"
)
.
routePath
(
taskV2Model1
.
getRoutePath
())
.
changeContent
(
BusinessTypeEnum
.
JG_INSTALLATION_NOTIFICATION
.
getName
()
+
"业务办理"
)
.
routePath
(
taskV2Model1
.
getRoutePath
())
.
build
())
.
build
())
.
collect
(
Collectors
.
toList
())
.
collect
(
Collectors
.
toList
())
);
);
...
...
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/JgMaintenanceContractServiceImpl.java
View file @
f18ba12f
...
@@ -733,6 +733,7 @@ public class JgMaintenanceContractServiceImpl extends BaseService<JgMaintenanceC
...
@@ -733,6 +733,7 @@ public class JgMaintenanceContractServiceImpl extends BaseService<JgMaintenanceC
.
approvalUnit
(
jgMaintenanceContract
.
getReceiveOrgName
())
.
approvalUnit
(
jgMaintenanceContract
.
getReceiveOrgName
())
.
approvalUnitCode
(
jgMaintenanceContract
.
getReceiveOrgCode
())
.
approvalUnitCode
(
jgMaintenanceContract
.
getReceiveOrgCode
())
.
status
(
"正常"
)
.
status
(
"正常"
)
.
changeContent
(
BusinessTypeEnum
.
JG_MAINTENANCE_RECORD
.
getName
()
+
"业务办理"
)
.
routePath
(
taskV2Model
.
getRoutePath
())
.
routePath
(
taskV2Model
.
getRoutePath
())
.
build
())
.
build
())
.
collect
(
Collectors
.
toList
())
.
collect
(
Collectors
.
toList
())
...
...
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/JgOverDesignServiceLifeServiceImpl.java
View file @
f18ba12f
...
@@ -767,6 +767,7 @@ public class JgOverDesignServiceLifeServiceImpl extends BaseService<JgOverDesign
...
@@ -767,6 +767,7 @@ public class JgOverDesignServiceLifeServiceImpl extends BaseService<JgOverDesign
.
approvalUnit
(
jgOverDesignServiceLife
.
getReceiveOrgName
())
.
approvalUnit
(
jgOverDesignServiceLife
.
getReceiveOrgName
())
.
approvalUnitCode
(
jgOverDesignServiceLife
.
getReceiveCompanyCode
())
.
approvalUnitCode
(
jgOverDesignServiceLife
.
getReceiveCompanyCode
())
.
status
(
"正常"
)
.
status
(
"正常"
)
.
changeContent
(
BusinessTypeEnum
.
JG_OVER_DESIGN_SERVICE_LIFE
.
getName
()
+
"业务办理"
)
.
routePath
(
taskV2Model
.
getRoutePath
())
.
routePath
(
taskV2Model
.
getRoutePath
())
.
build
());
.
build
());
}
}
...
...
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 @
f18ba12f
...
@@ -1681,6 +1681,7 @@ public class JgUseRegistrationServiceImpl extends BaseService<JgUseRegistrationD
...
@@ -1681,6 +1681,7 @@ public class JgUseRegistrationServiceImpl extends BaseService<JgUseRegistrationD
.
equId
((
String
)
mapData
.
get
(
"equipId"
))
.
equId
((
String
)
mapData
.
get
(
"equipId"
))
.
approvalUnit
(
jgUseRegistration
.
getReceiveOrgName
())
.
approvalUnit
(
jgUseRegistration
.
getReceiveOrgName
())
.
approvalUnitCode
(
jgUseRegistration
.
getReceiveCompanyCode
())
.
approvalUnitCode
(
jgUseRegistration
.
getReceiveCompanyCode
())
.
changeContent
(
BusinessTypeEnum
.
JG_USAGE_REGISTRATION
.
getName
()
+
"业务办理"
)
.
status
(
"正常"
)
.
status
(
"正常"
)
.
routePath
(
taskV2Model
.
getRoutePath
())
.
routePath
(
taskV2Model
.
getRoutePath
())
.
build
());
.
build
());
...
@@ -3482,6 +3483,7 @@ public class JgUseRegistrationServiceImpl extends BaseService<JgUseRegistrationD
...
@@ -3482,6 +3483,7 @@ public class JgUseRegistrationServiceImpl extends BaseService<JgUseRegistrationD
changeRecord
.
setCreateDate
(
new
Date
());
changeRecord
.
setCreateDate
(
new
Date
());
firstRecord
.
ifPresent
(
record
->
changeRecord
.
setRoutePath
(
record
.
getRoutePath
()));
firstRecord
.
ifPresent
(
record
->
changeRecord
.
setRoutePath
(
record
.
getRoutePath
()));
certificateChangeRecordService
.
save
(
changeRecord
);
certificateChangeRecordService
.
save
(
changeRecord
);
jgResumeInfoService
.
deleteByBusinessId
(
jgUseRegistration
.
getSequenceNbr
()+
""
);
}
}
private
void
rollBackSupervisionInfo
(
String
record
)
{
private
void
rollBackSupervisionInfo
(
String
record
)
{
...
@@ -3993,6 +3995,7 @@ public class JgUseRegistrationServiceImpl extends BaseService<JgUseRegistrationD
...
@@ -3993,6 +3995,7 @@ public class JgUseRegistrationServiceImpl extends BaseService<JgUseRegistrationD
.
approvalUnit
(
jgUseRegistration
.
getReceiveOrgName
())
.
approvalUnit
(
jgUseRegistration
.
getReceiveOrgName
())
.
approvalUnitCode
(
jgUseRegistration
.
getReceiveOrgCode
())
.
approvalUnitCode
(
jgUseRegistration
.
getReceiveOrgCode
())
.
status
(
"正常"
)
.
status
(
"正常"
)
.
changeContent
(
BusinessTypeEnum
.
JG_HISTORY_USAGE_REGISTRATION
.
getName
()
+
"业务办理"
)
.
build
());
.
build
());
}
}
return
this
.
baseMapper
.
getDetailById
(
jgUseRegistration
.
getSequenceNbr
());
return
this
.
baseMapper
.
getDetailById
(
jgUseRegistration
.
getSequenceNbr
());
...
...
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/JgVehicleInformationServiceImpl.java
View file @
f18ba12f
...
@@ -972,6 +972,7 @@ public class JgVehicleInformationServiceImpl extends BaseService<JgVehicleInform
...
@@ -972,6 +972,7 @@ public class JgVehicleInformationServiceImpl extends BaseService<JgVehicleInform
.
approvalUnit
(
jgVehicleInformation
.
getReceiveOrgName
())
.
approvalUnit
(
jgVehicleInformation
.
getReceiveOrgName
())
.
approvalUnitCode
(
jgVehicleInformation
.
getReceiveCompanyCode
())
.
approvalUnitCode
(
jgVehicleInformation
.
getReceiveCompanyCode
())
.
status
(
"正常"
)
.
status
(
"正常"
)
.
changeContent
(
BusinessTypeEnum
.
JG_VEHICLE_GAS_APPLICATION
.
getName
()
+
"业务办理"
)
.
routePath
(
taskV2Model
.
getRoutePath
())
.
routePath
(
taskV2Model
.
getRoutePath
())
.
build
())
.
build
())
.
collect
(
Collectors
.
toList
())
.
collect
(
Collectors
.
toList
())
...
@@ -1516,6 +1517,7 @@ public class JgVehicleInformationServiceImpl extends BaseService<JgVehicleInform
...
@@ -1516,6 +1517,7 @@ public class JgVehicleInformationServiceImpl extends BaseService<JgVehicleInform
changeRecord
.
setCreateDate
(
new
Date
());
changeRecord
.
setCreateDate
(
new
Date
());
firstRecord
.
ifPresent
(
record
->
changeRecord
.
setRoutePath
(
record
.
getRoutePath
()));
firstRecord
.
ifPresent
(
record
->
changeRecord
.
setRoutePath
(
record
.
getRoutePath
()));
certificateChangeRecordService
.
save
(
changeRecord
);
certificateChangeRecordService
.
save
(
changeRecord
);
jgResumeInfoService
.
deleteByBusinessId
(
jgVehicleInformation
.
getSequenceNbr
()+
""
);
}
}
/**
/**
...
...
amos-boot-system-tzs/amos-boot-module-jyjc/amos-boot-module-jyjc-api/src/main/java/com/yeejoin/amos/boot/module/jyjc/api/model/JgResumeInfoDto.java
View file @
f18ba12f
...
@@ -54,4 +54,7 @@ public class JgResumeInfoDto extends BaseDto {
...
@@ -54,4 +54,7 @@ public class JgResumeInfoDto extends BaseDto {
@ApiModelProperty
(
value
=
"详情路径"
)
@ApiModelProperty
(
value
=
"详情路径"
)
private
String
routePath
;
private
String
routePath
;
@ApiModelProperty
(
value
=
"变更内容"
)
private
String
changeContent
;
}
}
amos-boot-system-tzs/amos-boot-module-jyjc/amos-boot-module-jyjc-biz/src/main/java/com/yeejoin/amos/boot/module/jyjc/biz/service/impl/JyjcInspectionApplicationServiceImpl.java
View file @
f18ba12f
...
@@ -815,7 +815,11 @@ public class JyjcInspectionApplicationServiceImpl extends BaseService<JyjcInspec
...
@@ -815,7 +815,11 @@ public class JyjcInspectionApplicationServiceImpl extends BaseService<JyjcInspec
resultModels
.
add
(
resultModel
);
resultModels
.
add
(
resultModel
);
// TODO 暂存json,在结果录入后,将数据更新技术参数-检验详情使用 考虑兼容老数据
// TODO 暂存json,在结果录入后,将数据更新技术参数-检验详情使用 考虑兼容老数据
// 新增设备履历信息
// 新增设备履历信息
jgResumeInfoDtoList
.
add
(
JgResumeInfoDto
.
builder
().
applyNo
(
entity
.
getApplicationNo
()).
businessType
(
resultModel
.
getInspectionTypeName
()).
businessId
(
String
.
valueOf
(
entity
.
getSequenceNbr
())).
equId
(
applicationEquipModels
.
get
(
i
).
getEquipUnicode
()).
approvalUnit
(
model
.
getInspectionUnitName
()).
approvalUnitCode
(
model
.
getInspectionUnitCode
()).
status
(
"正常"
).
routePath
(
taskV2Model
.
getRoutePath
()).
build
());
jgResumeInfoDtoList
.
add
(
JgResumeInfoDto
.
builder
().
applyNo
(
entity
.
getApplicationNo
())
.
businessType
(
resultModel
.
getInspectionTypeName
())
.
businessId
(
String
.
valueOf
(
entity
.
getSequenceNbr
()))
.
changeContent
(
resultModel
.
getInspectionTypeName
()
+
"业务办理"
)
.
equId
(
applicationEquipModels
.
get
(
i
).
getEquipUnicode
()).
approvalUnit
(
model
.
getInspectionUnitName
()).
approvalUnitCode
(
model
.
getInspectionUnitCode
()).
status
(
"正常"
).
routePath
(
taskV2Model
.
getRoutePath
()).
build
());
}
}
}
}
inspectionResultService
.
saveOrUpdateBatch
(
resultModels
);
inspectionResultService
.
saveOrUpdateBatch
(
resultModels
);
...
...
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