Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
D
dsk-cr20g
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
Administrator
dsk-cr20g
Commits
ea9ac2ac
Commit
ea9ac2ac
authored
Jun 06, 2023
by
dengguangman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
-
parent
b31f6a98
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
30 additions
and
0 deletions
+30
-0
RegionalEconomicDataController.java
...er/search/macroMarket/RegionalEconomicDataController.java
+13
-0
EconomicService.java
...src/main/java/com/dsk/system/service/EconomicService.java
+11
-0
EconomicServiceImpl.java
...java/com/dsk/system/service/impl/EconomicServiceImpl.java
+6
-0
No files found.
dsk-admin/src/main/java/com/dsk/web/controller/search/macroMarket/RegionalEconomicDataController.java
View file @
ea9ac2ac
...
@@ -37,6 +37,19 @@ public class RegionalEconomicDataController {
...
@@ -37,6 +37,19 @@ public class RegionalEconomicDataController {
return
economicService
.
nationalPage
(
dto
);
return
economicService
.
nationalPage
(
dto
);
}
}
/***
*@Description: 获取年份
*@Param:
*@return: com.dsk.acc.security.common.msg.RestResponse
*@Author: Dgm
*@date: 2023/5/18 10:29
*/
@GetMapping
(
"/years/list"
)
public
AjaxResult
yearsList
()
{
return
economicService
.
yearsList
();
}
/***
/***
*@Description: 全国经济大全详情
*@Description: 全国经济大全详情
*@Param:
*@Param:
...
...
dsk-system/src/main/java/com/dsk/system/service/EconomicService.java
View file @
ea9ac2ac
...
@@ -24,6 +24,17 @@ public interface EconomicService {
...
@@ -24,6 +24,17 @@ public interface EconomicService {
*/
*/
AjaxResult
nationalPage
(
OpRegionalEconomicDataV1PageDto
dto
);
AjaxResult
nationalPage
(
OpRegionalEconomicDataV1PageDto
dto
);
/***
*@Description: 全国经济大全分页列表
*@Param:
*@return: com.dsk.common.core.domain.AjaxResult
*@Author: Dgm
*@date: 2023/5/18 10:25
*/
AjaxResult
yearsList
();
/***
/***
*@Description: 全国经济大全详情
*@Description: 全国经济大全详情
*@Param:
*@Param:
...
...
dsk-system/src/main/java/com/dsk/system/service/impl/EconomicServiceImpl.java
View file @
ea9ac2ac
...
@@ -33,6 +33,12 @@ public class EconomicServiceImpl implements EconomicService {
...
@@ -33,6 +33,12 @@ public class EconomicServiceImpl implements EconomicService {
return
BeanUtil
.
toBean
(
map
,
AjaxResult
.
class
);
return
BeanUtil
.
toBean
(
map
,
AjaxResult
.
class
);
}
}
@Override
public
AjaxResult
yearsList
()
{
Map
<
String
,
Object
>
map
=
dskOpenApiUtil
.
requestBody
(
"/economic/years/list"
,
null
);
return
BeanUtil
.
toBean
(
map
,
AjaxResult
.
class
);
}
@Override
@Override
public
AjaxResult
details
(
Integer
id
)
{
public
AjaxResult
details
(
Integer
id
)
{
Map
<
String
,
Object
>
bodyMap
=
new
HashMap
<>(
1
);
Map
<
String
,
Object
>
bodyMap
=
new
HashMap
<>(
1
);
...
...
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