Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
D
dcs-plan
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
dcs-plan
Commits
b4158d7d
Commit
b4158d7d
authored
Aug 30, 2024
by
wangqiang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
IED计划添加项目上下文对象;添加ExcelUtils对象
parent
087cdb96
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
492 additions
and
9 deletions
+492
-9
ExcelUtils.java
...main/java/com/yonde/dcs/plan/common/utils/ExcelUtils.java
+474
-0
ExtIDEPlanController.java
.../yonde/dcs/plan/core/controller/ExtIDEPlanController.java
+2
-1
ExtIDEPlanControllerShadow.java
...an/core/controller/shadow/ExtIDEPlanControllerShadow.java
+2
-1
ExtIDEPlanService.java
...va/com/yonde/dcs/plan/core/service/ExtIDEPlanService.java
+3
-1
ExtIDEPlanServiceImpl.java
...nde/dcs/plan/core/service/impl/ExtIDEPlanServiceImpl.java
+2
-1
ExtIDEPlanServiceShadow.java
...dcs/plan/core/service/shadow/ExtIDEPlanServiceShadow.java
+4
-2
ExtIEDPlanDocLinkServiceShadow.java
...n/core/service/shadow/ExtIEDPlanDocLinkServiceShadow.java
+1
-1
ExtPlanServiceShadow.java
...de/dcs/plan/core/service/shadow/ExtPlanServiceShadow.java
+4
-2
No files found.
dcs-plan-common/src/main/java/com/yonde/dcs/plan/common/utils/ExcelUtils.java
View file @
b4158d7d
This diff is collapsed.
Click to expand it.
dcs-plan-core/src/main/java/com/yonde/dcs/plan/core/controller/ExtIDEPlanController.java
View file @
b4158d7d
package
com
.
yonde
.
dcs
.
plan
.
core
.
controller
;
import
com.yonde.dex.context.plugin.common.entity.DxContextVOHolder
;
import
org.springframework.stereotype.Controller
;
import
io.swagger.annotations.ApiOperation
;
import
org.springframework.validation.annotation.Validated
;
...
...
@@ -25,7 +26,7 @@ import org.springframework.stereotype.Controller;
@RequestMapping
(
"/ExtIDEPlan"
)
@ResponseBody
()
@Controller
(
ExtIDEPlanController
.
BEAN_NAME
)
public
class
ExtIDEPlanController
<
V
extends
ExtIDEPlanVO
,
S
extends
ExtIDEPlanService
<
V
>>
extends
ExtIDEPlanControllerShadow
<
V
,
S
>
{
public
class
ExtIDEPlanController
<
V
extends
ExtIDEPlanVO
&
DxContextVOHolder
,
S
extends
ExtIDEPlanService
<
V
>>
extends
ExtIDEPlanControllerShadow
<
V
,
S
>
{
}
...
...
dcs-plan-core/src/main/java/com/yonde/dcs/plan/core/controller/shadow/ExtIDEPlanControllerShadow.java
View file @
b4158d7d
package
com
.
yonde
.
dcs
.
plan
.
core
.
controller
.
shadow
;
import
com.yonde.dex.context.plugin.common.entity.DxContextVOHolder
;
import
io.swagger.annotations.ApiOperation
;
import
org.springframework.validation.annotation.Validated
;
import
java.util.List
;
...
...
@@ -29,7 +30,7 @@ import com.yonde.dex.basedata.entity.api.ApiResult;
* @version: V
* @date: 2024-8-29 9:31:22
**/
public
class
ExtIDEPlanControllerShadow
<
V
extends
ExtIDEPlanVO
,
S
extends
ExtIDEPlanService
<
V
>>
implements
AbstractBaseController
<
V
,
S
>
,
AbstractLifecycleBaseController
<
V
,
S
>
,
AbstractVersionBaseController
<
V
,
S
>
,
DxObjFileLinkController
<
V
,
S
>{
public
class
ExtIDEPlanControllerShadow
<
V
extends
ExtIDEPlanVO
&
DxContextVOHolder
,
S
extends
ExtIDEPlanService
<
V
>>
implements
AbstractBaseController
<
V
,
S
>
,
AbstractLifecycleBaseController
<
V
,
S
>
,
AbstractVersionBaseController
<
V
,
S
>
,
DxObjFileLinkController
<
V
,
S
>{
public
static
final
String
BEAN_NAME
=
"extIDEPlanController"
;
...
...
dcs-plan-core/src/main/java/com/yonde/dcs/plan/core/service/ExtIDEPlanService.java
View file @
b4158d7d
...
...
@@ -2,12 +2,14 @@ package com.yonde.dcs.plan.core.service;
import
com.yonde.dcs.plan.common.vo.ExtIDEPlanVO
;
import
com.yonde.dcs.plan.core.service.shadow.ExtIDEPlanServiceShadow
;
import
com.yonde.dex.context.plugin.common.entity.DxContextVOHolder
;
/**
* @description: ExtIDEPlan-service
* @author: dexadmin
* @version: V
* @date: 2024-8-29 9:31:22
**/
public
interface
ExtIDEPlanService
<
V
extends
ExtIDEPlanVO
>
extends
ExtIDEPlanServiceShadow
<
V
>
{
public
interface
ExtIDEPlanService
<
V
extends
ExtIDEPlanVO
&
DxContextVOHolder
>
extends
ExtIDEPlanServiceShadow
<
V
>
{
}
dcs-plan-core/src/main/java/com/yonde/dcs/plan/core/service/impl/ExtIDEPlanServiceImpl.java
View file @
b4158d7d
package
com
.
yonde
.
dcs
.
plan
.
core
.
service
.
impl
;
import
com.yonde.dex.context.plugin.common.entity.DxContextVOHolder
;
import
org.springframework.stereotype.Service
;
import
io.swagger.annotations.ApiOperation
;
import
java.util.List
;
...
...
@@ -21,7 +22,7 @@ import javax.annotation.Resource;
**/
@Slf4j
@Service
(
ExtIDEPlanServiceImpl
.
BEAN_NAME
)
public
class
ExtIDEPlanServiceImpl
<
V
extends
ExtIDEPlanVO
>
implements
ExtIDEPlanService
<
V
>{
public
class
ExtIDEPlanServiceImpl
<
V
extends
ExtIDEPlanVO
&
DxContextVOHolder
>
implements
ExtIDEPlanService
<
V
>{
public
static
final
String
BEAN_NAME
=
"extIDEPlanServiceImpl"
;
...
...
dcs-plan-core/src/main/java/com/yonde/dcs/plan/core/service/shadow/ExtIDEPlanServiceShadow.java
View file @
b4158d7d
...
...
@@ -2,17 +2,19 @@ package com.yonde.dcs.plan.core.service.shadow;
import
com.yonde.dcs.plan.common.vo.ExtIDEPlanVO
;
import
com.yonde.dcs.plan.feign.ExtIDEPlanServiceFeign
;
import
com.yonde.dex.context.plugin.common.entity.DxContextVOHolder
;
import
com.yonde.dex.dao.service.BaseIdEntityService
;
import
com.yonde.dex.secretcode.plugin.core.service.SecretCodePluginService
;
import
com.yonde.dex.version.plugin.core.service.IterationService
;
import
com.yonde.dex.context.plugin.core.service.ContextPluginService
;
import
com.yonde.dex.lcycle.plugin.core.service.LifecycleBaseService
;
import
com.yonde.dex.dfs.objfilelink.plugin.core.service.ObjFileLinkPluginService
;
/**
* @description: ExtIDEPlan-service
* @author: dexadmin
* @version: V
* @date: 2024-8-
29 9:31:22
* @date: 2024-8-
30 10:28:37
**/
public
interface
ExtIDEPlanServiceShadow
<
V
extends
ExtIDEPlanVO
>
extends
ExtIDEPlanServiceFeign
<
V
>,
ObjFileLinkPluginService
<
V
>
,
LifecycleBaseService
<
V
>
,
BaseIdEntityService
<
V
>
,
SecretCodePluginService
<
V
>
,
IterationService
<
V
>
{
public
interface
ExtIDEPlanServiceShadow
<
V
extends
ExtIDEPlanVO
&
DxContextVOHolder
>
extends
ExtIDEPlanServiceFeign
<
V
>,
ContextPluginService
<
V
>
,
ObjFileLinkPluginService
<
V
>
,
LifecycleBaseService
<
V
>
,
BaseIdEntityService
<
V
>
,
SecretCodePluginService
<
V
>
,
IterationService
<
V
>
{
}
dcs-plan-core/src/main/java/com/yonde/dcs/plan/core/service/shadow/ExtIEDPlanDocLinkServiceShadow.java
View file @
b4158d7d
...
...
@@ -8,7 +8,7 @@ import com.yonde.dex.dao.service.BaseIdEntityService;
* @description: ExtIEDPlanDocLink-service
* @author: dexadmin
* @version: V
* @date: 2024-8-
29 9:31:22
* @date: 2024-8-
30 10:28:37
**/
public
interface
ExtIEDPlanDocLinkServiceShadow
<
V
extends
ExtIEDPlanDocLinkVO
>
extends
ExtIEDPlanDocLinkServiceFeign
<
V
>,
BaseIdEntityService
<
V
>
,
DxLinkDataService
<
V
>
{
...
...
dcs-plan-core/src/main/java/com/yonde/dcs/plan/core/service/shadow/ExtPlanServiceShadow.java
View file @
b4158d7d
...
...
@@ -3,7 +3,9 @@ package com.yonde.dcs.plan.core.service.shadow;
import
com.yonde.dcs.plan.common.vo.ExtPlanVO
;
import
com.yonde.dcs.plan.feign.ExtPlanServiceFeign
;
import
com.yonde.dex.dao.service.BaseIdEntityService
;
import
com.yonde.dex.secretcode.plugin.core.service.SecretCodePluginService
;
import
com.yonde.dex.version.plugin.core.service.IterationService
;
import
com.yonde.dex.context.plugin.core.service.ContextPluginService
;
import
com.yonde.dex.lcycle.plugin.core.service.LifecycleBaseService
;
import
com.yonde.dex.dfs.objfilelink.plugin.core.service.ObjFileLinkPluginService
;
import
com.yonde.dex.tree.plugin.core.service.BaseTreeService
;
...
...
@@ -11,8 +13,8 @@ import com.yonde.dex.tree.plugin.core.service.BaseTreeService;
* @description: ExtPlan-service
* @author: dexadmin
* @version: V
* @date: 2024-
7-26 9:34:0
6
* @date: 2024-
8-30 10:28:3
6
**/
public
interface
ExtPlanServiceShadow
<
V
extends
ExtPlanVO
>
extends
ExtPlanServiceFeign
<
V
>,
ObjFileLinkPluginService
<
V
>
,
BaseTreeService
<
V
>
,
LifecycleBaseService
<
V
>
,
BaseIdEntityService
<
V
>
,
Iteratio
nService
<
V
>
{
public
interface
ExtPlanServiceShadow
<
V
extends
ExtPlanVO
>
extends
ExtPlanServiceFeign
<
V
>,
ContextPluginService
<
V
>
,
ObjFileLinkPluginService
<
V
>
,
BaseTreeService
<
V
>
,
LifecycleBaseService
<
V
>
,
BaseIdEntityService
<
V
>
,
IterationService
<
V
>
,
SecretCodePlugi
nService
<
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