Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
D
dex-basic-service-expand
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
INET-TWO
server
dex-basic-service-expand
Commits
d907b9f6
Commit
d907b9f6
authored
Nov 18, 2024
by
侯彦文
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
项目增加附件
parent
33bb4bac
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
10 additions
and
21 deletions
+10
-21
DxContextProjectVOPluginExpand.java
...context/expand/plugin/DxContextProjectVOPluginExpand.java
+4
-1
ExtDxContextProjectControllerShadow.java
...er/expand/shadow/ExtDxContextProjectControllerShadow.java
+2
-1
ExtDxContextProjectServiceShadow.java
...rvice/expand/shadow/ExtDxContextProjectServiceShadow.java
+4
-1
ExtDxContextProjectShadowService.java
...rvice/expand/shadow/ExtDxContextProjectShadowService.java
+0
-18
No files found.
dex-basic-service-expand-common/src/main/java/com/yonde/dex/context/expand/plugin/DxContextProjectVOPluginExpand.java
View file @
d907b9f6
...
...
@@ -10,13 +10,16 @@ import com.yonde.dex.context.expand.entity.DxContextProjectVOExpand;
import
com.yonde.dex.basic.common.vo.ExtProjectContractLinkVO
;
import
com.yonde.dex.context.expand.plugin.DxContextVOPluginExpand
;
import
com.yonde.dex.basic.common.vo.ExtProjectTopicLinkVO
;
import
com.yonde.dex.dfs.objfilelink.plugin.common.entity.DxObjFileLinkVOHolder
;
import
com.yonde.dex.secretcode.plugin.common.entity.DxSecretVOHolder
;
/**
* @description: DxContextProject-扩展VO插件接口
* @author: dexadmin
* @version: V
* @date: 2024-10-22 13:49:43
**/
public
interface
DxContextProjectVOPluginExpand
<
V
extends
DxContextProjectVOPluginExpand
>
{
public
interface
DxContextProjectVOPluginExpand
<
V
extends
DxContextProjectVOPluginExpand
>
extends
DxObjFileLinkVOHolder
,
DxSecretVOHolder
{
DxContextProjectVOExpand
<
V
>
getDxContextProjectExpand
();
...
...
dex-basic-service-expand-core/src/main/java/com/yonde/dex/basic/core/controller/expand/shadow/ExtDxContextProjectControllerShadow.java
View file @
d907b9f6
package
com
.
yonde
.
dex
.
basic
.
core
.
controller
.
expand
.
shadow
;
import
com.yonde.dex.dfs.objfilelink.plugin.core.controller.DxObjFileLinkController
;
import
io.swagger.annotations.ApiOperation
;
import
org.springframework.validation.annotation.Validated
;
import
java.util.List
;
...
...
@@ -21,7 +22,7 @@ import com.yonde.dex.context.core.controller.ContextController;
* @version: V
* @date: 2024-10-22 13:49:43
**/
public
class
ExtDxContextProjectControllerShadow
<
V
extends
DxContextProjectVO
,
S
extends
ExtDxContextProjectService
<
V
>>
extends
ContextProjectController
<
V
,
S
>{
public
class
ExtDxContextProjectControllerShadow
<
V
extends
DxContextProjectVO
,
S
extends
ExtDxContextProjectService
<
V
>>
extends
ContextProjectController
<
V
,
S
>
implements
DxObjFileLinkController
<
V
,
S
>
{
public
static
final
String
BEAN_NAME
=
"contextProjectController"
;
...
...
dex-basic-service-expand-core/src/main/java/com/yonde/dex/basic/core/service/expand/shadow/ExtDxContextProjectServiceShadow.java
View file @
d907b9f6
...
...
@@ -4,12 +4,15 @@ import com.yonde.dex.context.common.vo.DxContextProjectVO;
import
com.yonde.dex.basic.feign.expand.ExtDxContextProjectServiceFeign
;
import
com.yonde.dex.context.core.service.ContextService
;
import
com.yonde.dex.context.core.service.ContextProjectService
;
import
com.yonde.dex.dfs.objfilelink.plugin.core.service.ObjFileLinkPluginService
;
import
com.yonde.dex.secretcode.plugin.core.service.SecretCodePluginService
;
/**
* @description: DxContextProject-service
* @author: dexadmin
* @version: V
* @date: 2024-10-22 13:49:43
**/
public
interface
ExtDxContextProjectServiceShadow
<
V
extends
DxContextProjectVO
>
extends
ExtDxContextProjectServiceFeign
<
V
>,
ContextService
<
V
>
,
ContextProjectService
<
V
>
{
public
interface
ExtDxContextProjectServiceShadow
<
V
extends
DxContextProjectVO
>
extends
ExtDxContextProjectServiceFeign
<
V
>,
ContextService
<
V
>
,
ContextProjectService
<
V
>
,
ObjFileLinkPluginService
<
V
>
,
SecretCodePluginService
<
V
>
{
}
dex-basic-service-expand-core/src/main/java/com/yonde/dex/basic/core/service/expand/shadow/ExtDxContextProjectShadowService.java
deleted
100644 → 0
View file @
33bb4bac
package
com
.
yonde
.
dex
.
basic
.
core
.
service
.
expand
.
shadow
;
import
com.yonde.dex.basic.feign.expand.ExtDxContextProjectServiceFeign
;
import
com.yonde.dex.context.common.vo.DxContextProjectVO
;
import
com.yonde.dex.context.core.service.ContextProjectService
;
import
com.yonde.dex.context.core.service.ContextService
;
import
com.yonde.dex.dfs.objfilelink.plugin.core.service.ObjFileLinkPluginService
;
import
com.yonde.dex.secretcode.plugin.core.service.SecretCodePluginService
;
/**
* @description: DxContext-service
* @author: dexadmin
* @version: V
* @date: 2024-9-20 10:26:39
**/
public
interface
ExtDxContextProjectShadowService
<
V
extends
DxContextProjectVO
>
extends
ExtDxContextProjectServiceFeign
<
V
>,
ContextProjectService
<
V
>
,
ObjFileLinkPluginService
<
V
>
,
SecretCodePluginService
<
V
>
{
}
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