Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
csbr-daop
/
ms-data-circulation-portal-service
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
d6a06b03
authored
2025-10-14 14:57:01 +0800
by
xu
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
可信空间连接器入住接口
1 parent
2b85dbc2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
10 deletions
src/main/java/com/csbr/qingcloud/portal/domain/vo/TdsConnectorVerifiableRQVO.java
src/main/java/com/csbr/qingcloud/portal/service/impl/TdsConnectorIdentityServiceImpl.java
src/main/java/com/csbr/qingcloud/portal/domain/vo/TdsConnectorVerifiableRQVO.java
View file @
d6a06b0
...
...
@@ -65,49 +65,42 @@ public class TdsConnectorVerifiableRQVO {
* 加密模块认证
*/
@Schema
(
description
=
"加密模块认证"
)
@NotNull
(
message
=
"加密模块认证为空。"
)
private
JSONArray
encryptionModuleAuthentication
;
/**
* 软件供应链合规声明
*/
@Schema
(
description
=
"软件供应链合规声明"
)
@NotNull
(
message
=
"软件供应链合规声明为空。"
)
private
JSONArray
softwareScmStatemen
;
/**
* 安全漏洞修复声明
*/
@Schema
(
description
=
"安全漏洞修复声明"
)
@NotNull
(
message
=
"安全漏洞修复声明为空。"
)
private
JSONArray
securityLoopholeRepairStatement
;
/**
* 通信协议兼容性认证
*/
@Schema
(
description
=
"通信协议兼容性认证"
)
@NotNull
(
message
=
"通信协议兼容性认证为空。"
)
private
JSONArray
communicationProtocolCompatibilityCertification
;
/**
* 硬件可信执行环境(TEE)认证
*/
@Schema
(
description
=
"硬件可信执行环境(TEE)认证"
)
@NotNull
(
message
=
"硬件可信执行环境(TEE)认证为空。"
)
private
JSONArray
teeCertification
;
/**
* 接入行为审计合规报告
*/
@Schema
(
description
=
"接入行为审计合规报告"
)
@NotNull
(
message
=
"接入行为审计合规报告为空。"
)
private
JSONArray
accessAuditReport
;
/**
* 第三方认证声明
*/
@Schema
(
description
=
"第三方认证声明"
)
@NotNull
(
message
=
"第三方认证声明为空。"
)
private
JSONArray
thirdPartyCertification
;
/**
...
...
src/main/java/com/csbr/qingcloud/portal/service/impl/TdsConnectorIdentityServiceImpl.java
View file @
d6a06b0
...
...
@@ -292,9 +292,11 @@ public class TdsConnectorIdentityServiceImpl extends FlowAbstractImpl implements
//驳回和撤销是,修改原来数据状态
if
(
ApprovalStateEnum
.
REJECT
.
getValue
().
equals
(
bizApproveVO
.
getApprovalState
())
||
ApprovalStateEnum
.
CANCEL
.
getValue
().
equals
(
bizApproveVO
.
getApprovalState
()))
{
MfTdsConnectorIdentity
sourceEntity
=
mfTdsConnectorIdentityService
.
getById
(
entity
.
getSourceBizGuid
());
sourceEntity
.
setBizApproveState
(
ApprovalStateEnum
.
PASSED
.
getValue
());
mfTdsConnectorIdentityService
.
updateById
(
sourceEntity
);
if
(
"Y"
.
equals
(
entity
.
getIsChangeData
()))
{
MfTdsConnectorIdentity
sourceEntity
=
mfTdsConnectorIdentityService
.
getById
(
entity
.
getSourceBizGuid
());
sourceEntity
.
setBizApproveState
(
ApprovalStateEnum
.
PASSED
.
getValue
());
mfTdsConnectorIdentityService
.
updateById
(
sourceEntity
);
}
}
mfTdsConnectorIdentityService
.
updateById
(
entity
);
}
...
...
Write
Preview
Styling with
Markdown
is supported
Attach a file
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 post a comment