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
d412776b
authored
2025-03-21 14:51:34 +0800
by
xiaojie
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
【数据资产】
1、元数据导入
1 parent
39c251cd
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
13 deletions
src/main/java/com/csbr/qingcloud/portal/service/impl/DemandServiceImpl.java
src/main/java/com/csbr/qingcloud/portal/service/impl/EnterpriseChangeApproveServiceImpl.java
src/main/java/com/csbr/qingcloud/portal/service/impl/EnterpriseServiceImpl.java
src/main/java/com/csbr/qingcloud/portal/service/impl/DemandServiceImpl.java
View file @
d412776
...
...
@@ -285,10 +285,7 @@ public class DemandServiceImpl extends FlowAbstractImpl implements DemandService
for
(
String
guid
:
guids
)
{
MfDemand
entity
=
mfDemandService
.
getById
(
guid
);
beforeRemove
(
entity
);
boolean
flag
=
mfDemandService
.
removeById
(
entity
);
if
(!
flag
)
{
throw
new
CsbrSystemException
(
SystemError
.
DATA_DEL_ERROR
,
messageSourceUtil
.
delMessage
(
FUNCTION_NAME
));
}
mfDemandService
.
removeById
(
entity
);
afterRemove
(
entity
);
crossPlatformApproveState
=
entity
.
getCrossPlatformApproveState
();
}
...
...
src/main/java/com/csbr/qingcloud/portal/service/impl/EnterpriseChangeApproveServiceImpl.java
View file @
d412776
...
...
@@ -201,11 +201,7 @@ public class EnterpriseChangeApproveServiceImpl implements EnterpriseChangeAppro
for
(
String
guid
:
guids
)
{
MfEnterpriseChangeApprove
entity
=
mfEnterpriseChangeApproveService
.
getById
(
guid
);
beforeRemove
(
entity
);
boolean
flag
=
mfEnterpriseChangeApproveService
.
removeById
(
guid
);
if
(!
flag
)
{
throw
new
CsbrSystemException
(
SystemError
.
DATA_DEL_ERROR
,
messageSourceUtil
.
delMessage
(
FUNCTION_NAME
));
}
mfEnterpriseChangeApproveService
.
removeById
(
guid
);
crossPlatformApproveState
=
entity
.
getCrossPlatformApproveState
();
}
...
...
src/main/java/com/csbr/qingcloud/portal/service/impl/EnterpriseServiceImpl.java
View file @
d412776
...
...
@@ -383,10 +383,7 @@ public class EnterpriseServiceImpl extends FlowAbstractImpl implements Enterpris
for
(
String
guid
:
guids
)
{
MfEnterprise
entity
=
mfEnterpriseService
.
getById
(
guid
);
beforeRemove
(
entity
);
boolean
flag
=
mfEnterpriseService
.
removeById
(
guid
);
if
(!
flag
)
{
throw
new
CsbrSystemException
(
SystemError
.
DATA_DEL_ERROR
,
messageSourceUtil
.
delMessage
(
FUNCTION_NAME
));
}
mfEnterpriseService
.
removeById
(
guid
);
afterRemove
(
entity
);
crossPlatformApproveState
=
entity
.
getCrossPlatformApproveState
();
}
...
...
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