Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
D
data-center
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
廖鑫
data-center
Commits
eccce7ba
Commit
eccce7ba
authored
Nov 11, 2021
by
shenxin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
蓉易办推送数据
parent
232078e7
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
159 additions
and
115 deletions
+159
-115
dataCenter-manager/src/main/java/com/mortals/xhx/modules/information/service/impl/InformationServiceImpl.java
...ules/information/service/impl/InformationServiceImpl.java
+147
-111
dataCenter-manager/src/main/java/com/mortals/xhx/modules/supplement/task/SupplementTaskImpl.java
...rtals/xhx/modules/supplement/task/SupplementTaskImpl.java
+0
-3
dataCenter-manager/src/main/java/com/mortals/xhx/modules/supplement/web/SupplementController.java
...tals/xhx/modules/supplement/web/SupplementController.java
+12
-1
No files found.
dataCenter-manager/src/main/java/com/mortals/xhx/modules/information/service/impl/InformationServiceImpl.java
View file @
eccce7ba
This diff is collapsed.
Click to expand it.
dataCenter-manager/src/main/java/com/mortals/xhx/modules/supplement/task/SupplementTaskImpl.java
View file @
eccce7ba
...
@@ -53,9 +53,6 @@ public class SupplementTaskImpl implements ITaskExcuteService {
...
@@ -53,9 +53,6 @@ public class SupplementTaskImpl implements ITaskExcuteService {
@Autowired
@Autowired
private
InformationDao
informationDao
;
private
InformationDao
informationDao
;
@Resource
private
RybMatterDao
rybMatterDao
;
@Override
@Override
public
void
excuteTask
(
ITask
task
)
throws
AppException
{
public
void
excuteTask
(
ITask
task
)
throws
AppException
{
//TODO:因临时对接蓉易办暂时屏蔽,等后期蓉易办对接完成后放开
//TODO:因临时对接蓉易办暂时屏蔽,等后期蓉易办对接完成后放开
...
...
dataCenter-manager/src/main/java/com/mortals/xhx/modules/supplement/web/SupplementController.java
View file @
eccce7ba
...
@@ -12,6 +12,7 @@ import com.mortals.xhx.modules.supplement.dao.SupplementDao;
...
@@ -12,6 +12,7 @@ import com.mortals.xhx.modules.supplement.dao.SupplementDao;
import
com.mortals.xhx.modules.supplement.listener.TemporaryDockingListener
;
import
com.mortals.xhx.modules.supplement.listener.TemporaryDockingListener
;
import
com.mortals.xhx.modules.supplement.model.SupplementEntity
;
import
com.mortals.xhx.modules.supplement.model.SupplementEntity
;
import
com.mortals.xhx.modules.supplement.service.SupplementService
;
import
com.mortals.xhx.modules.supplement.service.SupplementService
;
import
com.mortals.xhx.modules.supplement.task.SupplementTaskImpl
;
import
lombok.extern.slf4j.Slf4j
;
import
lombok.extern.slf4j.Slf4j
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.beans.factory.annotation.Value
;
import
org.springframework.beans.factory.annotation.Value
;
...
@@ -49,6 +50,9 @@ public class SupplementController extends BaseCRUDJsonMappingController<Suppleme
...
@@ -49,6 +50,9 @@ public class SupplementController extends BaseCRUDJsonMappingController<Suppleme
@Autowired
@Autowired
private
SupplementDao
supplementDao
;
private
SupplementDao
supplementDao
;
@Autowired
private
SupplementTaskImpl
supplementTaskImpl
;
/**
/**
* 导入办件信息,一阶段通过excel表格导入,放入磁盘中,在通过文件地址去获取文件内容进行数据清洗
* 导入办件信息,一阶段通过excel表格导入,放入磁盘中,在通过文件地址去获取文件内容进行数据清洗
...
@@ -92,7 +96,14 @@ public class SupplementController extends BaseCRUDJsonMappingController<Suppleme
...
@@ -92,7 +96,14 @@ public class SupplementController extends BaseCRUDJsonMappingController<Suppleme
return
respPdu
;
return
respPdu
;
}
}
/*
*
* 蓉易办对接入口,清洗,临时接口,后期可删除,
* */
@RequestMapping
(
"rybDocking"
)
public
void
rybDocking
(){
supplementTaskImpl
.
excuteTask
(
null
);
}
public
SupplementController
(){
public
SupplementController
(){
super
.
setFormClass
(
SupplementForm
.
class
);
super
.
setFormClass
(
SupplementForm
.
class
);
...
...
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