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
955b9af0
Commit
955b9af0
authored
Jun 12, 2023
by
zhangyi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update
parent
2cd749ca
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
9 additions
and
4 deletions
+9
-4
EnterpriseController.java
...java/com/dsk/web/controller/dsk/EnterpriseController.java
+1
-1
EnterpriseAffiliatesBody.java
...sk/common/core/domain/model/EnterpriseAffiliatesBody.java
+3
-1
EnterpriseInvestmentBody.java
...sk/common/core/domain/model/EnterpriseInvestmentBody.java
+4
-1
EnterpriseService.java
...ain/java/com/dsk/system/dskService/EnterpriseService.java
+1
-1
No files found.
dsk-admin/src/main/java/com/dsk/web/controller/dsk/EnterpriseController.java
View file @
955b9af0
...
@@ -95,7 +95,7 @@ public class EnterpriseController {
...
@@ -95,7 +95,7 @@ public class EnterpriseController {
@ApiOperation
(
value
=
"工商股东信息(openApi)"
)
@ApiOperation
(
value
=
"工商股东信息(openApi)"
)
@PostMapping
(
value
=
"bestStockPage"
)
@PostMapping
(
value
=
"bestStockPage"
)
public
TableDataInfo
bestStockPage
(
@RequestBody
@Valid
Enterprise
Keymembers
Body
vo
)
throws
Exception
{
public
TableDataInfo
bestStockPage
(
@RequestBody
@Valid
Enterprise
BestStockPage
Body
vo
)
throws
Exception
{
return
enterpriseService
.
bestStockPage
(
vo
);
return
enterpriseService
.
bestStockPage
(
vo
);
}
}
...
...
dsk-common/src/main/java/com/dsk/common/core/domain/model/EnterpriseAffiliatesBody.java
View file @
955b9af0
...
@@ -18,5 +18,7 @@ public class EnterpriseAffiliatesBody extends BasePage {
...
@@ -18,5 +18,7 @@ public class EnterpriseAffiliatesBody extends BasePage {
@NotNull
(
message
=
"企业id不能为空"
)
@NotNull
(
message
=
"企业id不能为空"
)
private
Integer
cid
;
private
Integer
cid
;
private
Integer
hasBid
;
}
}
dsk-common/src/main/java/com/dsk/common/core/domain/model/EnterpriseInvestmentBody.java
View file @
955b9af0
...
@@ -17,6 +17,9 @@ public class EnterpriseInvestmentBody extends BasePage {
...
@@ -17,6 +17,9 @@ public class EnterpriseInvestmentBody extends BasePage {
//企业Id
//企业Id
@NotNull
(
message
=
"企业id不能为空"
)
@NotNull
(
message
=
"企业id不能为空"
)
private
Integer
cid
;
private
Integer
cid
;
private
Integer
hasBid
;
private
double
stockPercentageMin
;
private
double
stockPercentageMax
;
}
}
dsk-system/src/main/java/com/dsk/system/dskService/EnterpriseService.java
View file @
955b9af0
...
@@ -132,7 +132,7 @@ public class EnterpriseService {
...
@@ -132,7 +132,7 @@ public class EnterpriseService {
return
dskOpenApiUtil
.
responsePage
(
map
);
return
dskOpenApiUtil
.
responsePage
(
map
);
}
}
public
TableDataInfo
bestStockPage
(
Enterprise
Keymembers
Body
body
)
throws
Exception
{
public
TableDataInfo
bestStockPage
(
Enterprise
BestStockPage
Body
body
)
throws
Exception
{
Map
<
String
,
Object
>
map
=
dskOpenApiUtil
.
requestBody
(
"/operate/enterprise/bestStockPage"
,
BeanUtil
.
beanToMap
(
body
,
false
,
false
));
Map
<
String
,
Object
>
map
=
dskOpenApiUtil
.
requestBody
(
"/operate/enterprise/bestStockPage"
,
BeanUtil
.
beanToMap
(
body
,
false
,
false
));
return
dskOpenApiUtil
.
responsePage
(
map
);
return
dskOpenApiUtil
.
responsePage
(
map
);
}
}
...
...
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