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
fa487e63
Commit
fa487e63
authored
Apr 11, 2024
by
刘林
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix(JG):使用登记证添加气瓶类别
parent
12f6294c
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
40 additions
and
28 deletions
+40
-28
CylinderTypeEnum.java
...ejoin/amos/boot/module/jg/api/enums/CylinderTypeEnum.java
+12
-1
JgVehicleInformationController.java
...ule/jg/biz/controller/JgVehicleInformationController.java
+2
-1
CommonServiceImpl.java
...os/boot/module/jg/biz/service/impl/CommonServiceImpl.java
+2
-2
JgUseRegistrationServiceImpl.java
...ule/jg/biz/service/impl/JgUseRegistrationServiceImpl.java
+5
-2
JgVehicleInformationServiceImpl.java
.../jg/biz/service/impl/JgVehicleInformationServiceImpl.java
+19
-22
No files found.
amos-boot-system-tzs/amos-boot-module-jg/amos-boot-module-jg-api/src/main/java/com/yeejoin/amos/boot/module/jg/api/enums/CylinderTypeEnum.java
View file @
fa487e63
...
@@ -7,8 +7,19 @@ import lombok.Getter;
...
@@ -7,8 +7,19 @@ import lombok.Getter;
@AllArgsConstructor
@AllArgsConstructor
public
enum
CylinderTypeEnum
{
public
enum
CylinderTypeEnum
{
CYLINDER
(
"瓶"
,
"2300"
),
CYLINDER
(
"瓶"
,
"2300"
),
SPECIAL_CYLINDER
(
"特种气瓶"
,
"23T0"
);
SEAMLESS_CYLINDER
(
"无缝气瓶(车用)"
,
"2310"
),
WELDED_CYLINDER
(
"焊接气瓶(车用)"
,
"2320"
),
SPECIAL_CYLINDER
(
"特种气瓶(车用)"
,
"23T0"
);
private
final
String
name
;
private
final
String
name
;
private
final
String
code
;
private
final
String
code
;
public
static
String
of
(
String
code
)
{
for
(
CylinderTypeEnum
constants
:
values
())
{
if
(
constants
.
getCode
().
equals
(
code
))
{
return
constants
.
getName
();
}
}
return
null
;
}
}
}
amos-boot-system-tzs/amos-boot-module-jg/amos-boot-module-jg-biz/src/main/java/com/yeejoin/amos/boot/module/jg/biz/controller/JgVehicleInformationController.java
View file @
fa487e63
...
@@ -62,7 +62,8 @@ public class JgVehicleInformationController extends BaseController {
...
@@ -62,7 +62,8 @@ public class JgVehicleInformationController extends BaseController {
String
.
valueOf
(
map
.
get
(
"instanceId"
)),
String
.
valueOf
(
map
.
get
(
"instanceId"
)),
String
.
valueOf
(
map
.
get
(
"operate"
)),
String
.
valueOf
(
map
.
get
(
"operate"
)),
String
.
valueOf
(
map
.
get
(
"comment"
)),
String
.
valueOf
(
map
.
get
(
"comment"
)),
String
.
valueOf
(
map
.
get
(
"nextTaskId"
)));
String
.
valueOf
(
map
.
get
(
"nextTaskId"
)),
String
.
valueOf
(
map
.
get
(
"EQU_DEFINE_CODE"
)));
return
ResponseHelper
.
buildResponse
(
"ok"
);
return
ResponseHelper
.
buildResponse
(
"ok"
);
}
}
...
...
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/CommonServiceImpl.java
View file @
fa487e63
...
@@ -928,14 +928,14 @@ public class CommonServiceImpl implements ICommonService {
...
@@ -928,14 +928,14 @@ public class CommonServiceImpl implements ICommonService {
JSONObject
jsonObject
=
new
JSONObject
(
provideMap
);
JSONObject
jsonObject
=
new
JSONObject
(
provideMap
);
return
jgTransferNoticeService
.
saveNotice
(
submitType
,
jsonObject
,
reginParams
);
return
jgTransferNoticeService
.
saveNotice
(
submitType
,
jsonObject
,
reginParams
);
}
else
if
(
type
.
equals
(
ApplicationFormTypeEnum
.
SYDJ
.
getBusinessCode
()))
{
}
else
if
(
type
.
equals
(
ApplicationFormTypeEnum
.
SYDJ
.
getBusinessCode
()))
{
String
code
=
(
String
)
basicObj
.
get
(
"
equDefineCode
"
);
String
code
=
(
String
)
basicObj
.
get
(
"
businessScenarios
"
);
noticeObj
.
put
(
"receiveOrgCode"
,
!
ObjectUtils
.
isEmpty
(
basicObj
.
get
(
"receiveOrgCreditCode"
))
?
String
.
valueOf
(
basicObj
.
get
(
"receiveOrgCreditCode"
))
:
String
.
valueOf
(
basicObj
.
get
(
"receiveOrgCreditCode1"
)));
noticeObj
.
put
(
"receiveOrgCode"
,
!
ObjectUtils
.
isEmpty
(
basicObj
.
get
(
"receiveOrgCreditCode"
))
?
String
.
valueOf
(
basicObj
.
get
(
"receiveOrgCreditCode"
))
:
String
.
valueOf
(
basicObj
.
get
(
"receiveOrgCreditCode1"
)));
JSONObject
jsonObject
=
new
JSONObject
(
noticeObj
);
JSONObject
jsonObject
=
new
JSONObject
(
noticeObj
);
if
(
submitType
.
equals
(
"1"
))
{
if
(
submitType
.
equals
(
"1"
))
{
jsonObject
.
put
(
"submit"
,
Boolean
.
TRUE
);
jsonObject
.
put
(
"submit"
,
Boolean
.
TRUE
);
}
}
//判断是否为车用气瓶使用登记或者设备使用登记
//判断是否为车用气瓶使用登记或者设备使用登记
return
code
!=
null
&&
code
.
equals
(
"
23T0
"
)
?
jgVehicleInformationService
.
save
(
submitType
,
jsonObject
)
:
jgUseRegistrationServiceImpl
.
save
(
jsonObject
);
return
code
!=
null
&&
code
.
equals
(
"
1
"
)
?
jgVehicleInformationService
.
save
(
submitType
,
jsonObject
)
:
jgUseRegistrationServiceImpl
.
save
(
jsonObject
);
}
else
if
(
type
.
equals
(
ApplicationFormTypeEnum
.
GZBG
.
getBusinessCode
()))
{
}
else
if
(
type
.
equals
(
ApplicationFormTypeEnum
.
GZBG
.
getBusinessCode
()))
{
// 兼容业务逻辑代码
// 兼容业务逻辑代码
if
(
submitType
.
equals
(
"1"
))
{
if
(
submitType
.
equals
(
"1"
))
{
...
...
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 @
fa487e63
...
@@ -520,8 +520,11 @@ public class JgUseRegistrationServiceImpl extends BaseService<JgUseRegistrationD
...
@@ -520,8 +520,11 @@ public class JgUseRegistrationServiceImpl extends BaseService<JgUseRegistrationD
CompanyBo
company
=
reginParams
.
getCompany
();
CompanyBo
company
=
reginParams
.
getCompany
();
List
<
Map
<
String
,
Object
>>
equipmentLists
=
(
List
<
Map
<
String
,
Object
>>)
map
.
get
(
"equipmentLists"
);
List
<
Map
<
String
,
Object
>>
equipmentLists
=
(
List
<
Map
<
String
,
Object
>>)
map
.
get
(
"equipmentLists"
);
if
(
CollectionUtils
.
isEmpty
(
equipmentLists
))
{
if
(
org
.
springframework
.
util
.
CollectionUtils
.
isEmpty
(
equipmentLists
)
||
equipmentLists
.
stream
()
throw
new
BadRequest
(
"请先选择设备信息!"
);
.
map
(
v
->
(
String
)
v
.
get
(
"EQU_DEFINE_CODE"
))
.
distinct
()
.
count
()
!=
1
)
{
throw
new
BadRequest
(
CollectionUtils
.
isEmpty
(
equipmentLists
)
?
"请选择设备信息!"
:
"请选择相同设备种类!"
);
}
}
List
<
IdxBizJgInspectionDetectionInfo
>
inspectionDetectionInfoList
=
idxBizJgInspectionDetectionInfoService
.
checkInspectionInfo
(
List
<
IdxBizJgInspectionDetectionInfo
>
inspectionDetectionInfoList
=
idxBizJgInspectionDetectionInfoService
.
checkInspectionInfo
(
equipmentLists
.
stream
()
equipmentLists
.
stream
()
...
...
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 @
fa487e63
...
@@ -16,9 +16,7 @@ import com.yeejoin.amos.boot.biz.common.utils.RedisKey;
...
@@ -16,9 +16,7 @@ import com.yeejoin.amos.boot.biz.common.utils.RedisKey;
import
com.yeejoin.amos.boot.biz.common.utils.RedisUtils
;
import
com.yeejoin.amos.boot.biz.common.utils.RedisUtils
;
import
com.yeejoin.amos.boot.module.jg.api.dto.*
;
import
com.yeejoin.amos.boot.module.jg.api.dto.*
;
import
com.yeejoin.amos.boot.module.jg.api.entity.*
;
import
com.yeejoin.amos.boot.module.jg.api.entity.*
;
import
com.yeejoin.amos.boot.module.jg.api.enums.BusinessTypeEnum
;
import
com.yeejoin.amos.boot.module.jg.api.enums.*
;
import
com.yeejoin.amos.boot.module.jg.api.enums.VehicleApanageEnum
;
import
com.yeejoin.amos.boot.module.jg.api.enums.WorkFlowStatusEnum
;
import
com.yeejoin.amos.boot.module.jg.api.mapper.JgVehicleInformationEqMapper
;
import
com.yeejoin.amos.boot.module.jg.api.mapper.JgVehicleInformationEqMapper
;
import
com.yeejoin.amos.boot.module.jg.api.mapper.JgVehicleInformationMapper
;
import
com.yeejoin.amos.boot.module.jg.api.mapper.JgVehicleInformationMapper
;
import
com.yeejoin.amos.boot.module.jg.api.service.IJgVehicleInformationService
;
import
com.yeejoin.amos.boot.module.jg.api.service.IJgVehicleInformationService
;
...
@@ -127,8 +125,11 @@ public class JgVehicleInformationServiceImpl extends BaseService<JgVehicleInform
...
@@ -127,8 +125,11 @@ public class JgVehicleInformationServiceImpl extends BaseService<JgVehicleInform
JgVehicleInformationDto
vehicleInfoDto
=
JSON
.
parseObject
(
JSON
.
toJSONString
(
map
),
JgVehicleInformationDto
.
class
);
JgVehicleInformationDto
vehicleInfoDto
=
JSON
.
parseObject
(
JSON
.
toJSONString
(
map
),
JgVehicleInformationDto
.
class
);
List
<
Map
<
String
,
Object
>>
equipmentLists
=
(
List
<
Map
<
String
,
Object
>>)
map
.
get
(
"equipmentLists"
);
List
<
Map
<
String
,
Object
>>
equipmentLists
=
(
List
<
Map
<
String
,
Object
>>)
map
.
get
(
"equipmentLists"
);
if
(
CollectionUtils
.
isEmpty
(
equipmentLists
))
{
if
(
CollectionUtils
.
isEmpty
(
equipmentLists
)
||
equipmentLists
.
stream
()
throw
new
BadRequest
(
"请选择设备"
);
.
map
(
v
->
(
String
)
v
.
get
(
"EQU_DEFINE_CODE"
))
.
distinct
()
.
count
()
!=
1
)
{
throw
new
BadRequest
(
CollectionUtils
.
isEmpty
(
equipmentLists
)
?
"请选择设备信息!"
:
"请选择相同设备种类!"
);
}
}
CompanyBo
company
=
reginParams
.
getCompany
();
CompanyBo
company
=
reginParams
.
getCompany
();
...
@@ -236,11 +237,11 @@ public class JgVehicleInformationServiceImpl extends BaseService<JgVehicleInform
...
@@ -236,11 +237,11 @@ public class JgVehicleInformationServiceImpl extends BaseService<JgVehicleInform
List
<
WorkflowResultDto
>
workflowResultDtoList
=
commonService
.
buildWorkFlowInfo
(
processTasks
);
List
<
WorkflowResultDto
>
workflowResultDtoList
=
commonService
.
buildWorkFlowInfo
(
processTasks
);
if
(!
ObjectUtils
.
isEmpty
(
workflowResultDtoList
)
&&
!
ObjectUtils
.
isEmpty
(
workflowResultDtoList
.
get
(
0
)))
{
if
(!
ObjectUtils
.
isEmpty
(
workflowResultDtoList
)
&&
!
ObjectUtils
.
isEmpty
(
workflowResultDtoList
.
get
(
0
)))
{
WorkflowResultDto
workflowResultDto
=
workflowResultDtoList
.
get
(
0
);
WorkflowResultDto
workflowResultDto
=
workflowResultDtoList
.
get
(
0
);
this
.
updateData
(
vehicleInformation
.
getSequenceNbr
(),
"0"
,
workflowResultDto
,
Boolean
.
TRUE
);
this
.
updateData
(
vehicleInformation
.
getSequenceNbr
(),
"0"
,
workflowResultDto
,
Boolean
.
TRUE
,
String
.
valueOf
(
map
.
get
(
"EQU_DEFINE_CODE"
))
);
}
}
}
else
{
}
else
{
// 执行流程
// 执行流程
flowExecute
(
vehicleInformation
.
getSequenceNbr
(),
vehicleInformation
.
getInstanceId
(),
"0"
,
""
,
String
.
valueOf
(
map
.
get
(
"nextTaskId"
)));
flowExecute
(
vehicleInformation
.
getSequenceNbr
(),
vehicleInformation
.
getInstanceId
(),
"0"
,
""
,
String
.
valueOf
(
map
.
get
(
"nextTaskId"
))
,
String
.
valueOf
(
map
.
get
(
"EQU_DEFINE_CODE"
))
);
}
}
}
else
{
}
else
{
ArrayList
<
TaskModelDto
>
list
=
new
ArrayList
<>();
ArrayList
<
TaskModelDto
>
list
=
new
ArrayList
<>();
...
@@ -399,7 +400,7 @@ public class JgVehicleInformationServiceImpl extends BaseService<JgVehicleInform
...
@@ -399,7 +400,7 @@ public class JgVehicleInformationServiceImpl extends BaseService<JgVehicleInform
* @param comment 意见
* @param comment 意见
* @param nextTaskId nextTaskId
* @param nextTaskId nextTaskId
*/
*/
public
void
flowExecute
(
Long
sequenceNbr
,
String
instanceId
,
String
operate
,
String
comment
,
String
nextTaskId
)
{
public
void
flowExecute
(
Long
sequenceNbr
,
String
instanceId
,
String
operate
,
String
comment
,
String
nextTaskId
,
String
equDefineCode
)
{
String
lockKey
=
CommonServiceImpl
.
buildJgExecuteLockKey
(
instanceId
);
String
lockKey
=
CommonServiceImpl
.
buildJgExecuteLockKey
(
instanceId
);
RLock
lock
=
redissonClient
.
getLock
(
lockKey
);
RLock
lock
=
redissonClient
.
getLock
(
lockKey
);
try
{
try
{
...
@@ -436,7 +437,7 @@ public class JgVehicleInformationServiceImpl extends BaseService<JgVehicleInform
...
@@ -436,7 +437,7 @@ public class JgVehicleInformationServiceImpl extends BaseService<JgVehicleInform
List
<
WorkflowResultDto
>
resultDto
=
commonService
.
buildWorkFlowInfo
(
processTaskDTOS
);
List
<
WorkflowResultDto
>
resultDto
=
commonService
.
buildWorkFlowInfo
(
processTaskDTOS
);
if
(!
ObjectUtils
.
isEmpty
(
resultDto
)
&&
!
ObjectUtils
.
isEmpty
(
resultDto
.
get
(
0
)))
{
if
(!
ObjectUtils
.
isEmpty
(
resultDto
)
&&
!
ObjectUtils
.
isEmpty
(
resultDto
.
get
(
0
)))
{
WorkflowResultDto
workflowResultDto
=
resultDto
.
get
(
0
);
WorkflowResultDto
workflowResultDto
=
resultDto
.
get
(
0
);
this
.
updateData
(
jgVehicleInformation
.
getSequenceNbr
(),
operate
,
workflowResultDto
,
Boolean
.
FALSE
);
this
.
updateData
(
jgVehicleInformation
.
getSequenceNbr
(),
operate
,
workflowResultDto
,
Boolean
.
FALSE
,
equDefineCode
);
}
}
}
catch
(
InterruptedException
e
)
{
}
catch
(
InterruptedException
e
)
{
e
.
printStackTrace
();
e
.
printStackTrace
();
...
@@ -455,7 +456,7 @@ public class JgVehicleInformationServiceImpl extends BaseService<JgVehicleInform
...
@@ -455,7 +456,7 @@ public class JgVehicleInformationServiceImpl extends BaseService<JgVehicleInform
* @param workflowResultDto workflowResultDto
* @param workflowResultDto workflowResultDto
* @param isFirst isFirst
* @param isFirst isFirst
*/
*/
public
void
updateData
(
Long
sequenceNbr
,
String
operate
,
WorkflowResultDto
workflowResultDto
,
Boolean
isFirst
)
{
public
void
updateData
(
Long
sequenceNbr
,
String
operate
,
WorkflowResultDto
workflowResultDto
,
Boolean
isFirst
,
String
equDefineCode
)
{
ReginParams
reginParams
=
JSONObject
.
parseObject
(
redisUtils
.
get
(
RedisKey
.
buildReginKey
(
RequestContext
.
getExeUserId
(),
RequestContext
.
getToken
()))
+
""
,
ReginParams
.
class
);
ReginParams
reginParams
=
JSONObject
.
parseObject
(
redisUtils
.
get
(
RedisKey
.
buildReginKey
(
RequestContext
.
getExeUserId
(),
RequestContext
.
getToken
()))
+
""
,
ReginParams
.
class
);
String
role
=
workflowResultDto
.
getNextExecutorRoleIds
();
String
role
=
workflowResultDto
.
getNextExecutorRoleIds
();
String
taskCode
=
FlowStatusEnum
.
TO_BE_FINISHED
.
getName
();
String
taskCode
=
FlowStatusEnum
.
TO_BE_FINISHED
.
getName
();
...
@@ -534,7 +535,7 @@ public class JgVehicleInformationServiceImpl extends BaseService<JgVehicleInform
...
@@ -534,7 +535,7 @@ public class JgVehicleInformationServiceImpl extends BaseService<JgVehicleInform
CompanyModel
receiveParentResult
=
Privilege
.
companyClient
.
seleteOne
(
receiveCompanyResult
.
getParentId
()).
getResult
();
CompanyModel
receiveParentResult
=
Privilege
.
companyClient
.
seleteOne
(
receiveCompanyResult
.
getParentId
()).
getResult
();
receiveCompanyCode
=
receiveParentResult
.
getCompanyCode
();
receiveCompanyCode
=
receiveParentResult
.
getCompanyCode
();
}
}
String
code
=
this
.
generateVehicleUseRegistrationCode
(
receiveCompanyCode
);
String
code
=
this
.
generateVehicleUseRegistrationCode
(
receiveCompanyCode
,
equDefineCode
);
jgVehicleInformation
.
setUseRegistrationCode
(
code
);
jgVehicleInformation
.
setUseRegistrationCode
(
code
);
jgVehicleInformation
.
setAuditPassDate
(
new
Date
());
jgVehicleInformation
.
setAuditPassDate
(
new
Date
());
...
@@ -780,13 +781,12 @@ public class JgVehicleInformationServiceImpl extends BaseService<JgVehicleInform
...
@@ -780,13 +781,12 @@ public class JgVehicleInformationServiceImpl extends BaseService<JgVehicleInform
* @param receiveCompanyCode 车辆属地
* @param receiveCompanyCode 车辆属地
* @return String
* @return String
*/
*/
private
String
generateVehicleUseRegistrationCode
(
String
receiveCompanyCode
)
{
private
String
generateVehicleUseRegistrationCode
(
String
receiveCompanyCode
,
String
equDefineCode
)
{
StringBuilder
useRegistration
=
new
StringBuilder
(
"瓶3T"
);
// 构建设备种类简称
if
(!
ObjectUtils
.
isEmpty
(
receiveCompanyCode
))
{
String
useRegistration
=
String
.
format
(
"瓶%s%s"
,
equDefineCode
.
substring
(
1
,
3
),
VehicleApanageEnum
.
of
(
receiveCompanyCode
));
ResponseModel
<
String
>
stringResponseModel
=
tzsServiceFeignClient
.
useRegistrationCode
(
useRegistration
.
append
(
VehicleApanageEnum
.
of
(
receiveCompanyCode
))
+
""
);
// 调用服务端获取注册码
return
stringResponseModel
.
getResult
();
ResponseModel
<
String
>
stringResponseModel
=
tzsServiceFeignClient
.
useRegistrationCode
(
useRegistration
);
}
return
stringResponseModel
.
getResult
();
return
null
;
}
}
/**
/**
...
@@ -877,16 +877,13 @@ public class JgVehicleInformationServiceImpl extends BaseService<JgVehicleInform
...
@@ -877,16 +877,13 @@ public class JgVehicleInformationServiceImpl extends BaseService<JgVehicleInform
String
equDefine
=
registerInfo
.
getEquDefine
();
String
equDefine
=
registerInfo
.
getEquDefine
();
List
<
EquipmentCategory
>
categoryList0
=
commonService
.
getEquipmentCategoryList
(
equList
,
null
);
List
<
EquipmentCategory
>
categoryList0
=
commonService
.
getEquipmentCategoryList
(
equList
,
null
);
List
<
EquipmentCategory
>
categoryList1
=
commonService
.
getEquipmentCategoryList
(
equCategory
,
null
);
List
<
EquipmentCategory
>
categoryList1
=
commonService
.
getEquipmentCategoryList
(
equCategory
,
null
);
List
<
EquipmentCategory
>
categoryList2
=
commonService
.
getEquipmentCategoryList
(
equDefine
,
null
);
if
(
notEmptyAndHasName
(
categoryList0
))
{
if
(
notEmptyAndHasName
(
categoryList0
))
{
exportParamsMap
.
put
(
"equList"
,
categoryList0
.
get
(
0
).
getName
());
exportParamsMap
.
put
(
"equList"
,
categoryList0
.
get
(
0
).
getName
());
}
}
if
(
notEmptyAndHasName
(
categoryList1
))
{
if
(
notEmptyAndHasName
(
categoryList1
))
{
exportParamsMap
.
put
(
"equCategory"
,
categoryList1
.
get
(
0
).
getName
());
exportParamsMap
.
put
(
"equCategory"
,
categoryList1
.
get
(
0
).
getName
());
}
}
if
(
notEmptyAndHasName
(
categoryList2
))
{
exportParamsMap
.
put
(
"equDefine"
,
CylinderTypeEnum
.
of
(
equDefine
));
exportParamsMap
.
put
(
"equDefine"
,
"特种气瓶(车用)"
);
}
if
(
registerInfoList
.
stream
().
anyMatch
(
r
->
r
.
getEquCode
()
==
null
))
{
if
(
registerInfoList
.
stream
().
anyMatch
(
r
->
r
.
getEquCode
()
==
null
))
{
throw
new
BadRequest
(
"使用登记证导出失败,设备代码为空!"
);
throw
new
BadRequest
(
"使用登记证导出失败,设备代码为空!"
);
}
}
...
...
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