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
4cb6bdcb
Commit
4cb6bdcb
authored
Jun 14, 2023
by
zhangyi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update
parent
3f61e0e6
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
2 additions
and
8 deletions
+2
-8
EnterpriseProjectApprovalProjectPageBody.java
...omain/model/EnterpriseProjectApprovalProjectPageBody.java
+0
-1
EnterpriseProjectBidNoticePageBody.java
...core/domain/model/EnterpriseProjectBidNoticePageBody.java
+0
-1
EnterpriseProjectBidPlanPageBody.java
...n/core/domain/model/EnterpriseProjectBidPlanPageBody.java
+0
-1
EnterpriseProjectLandTransactionPageBody.java
...omain/model/EnterpriseProjectLandTransactionPageBody.java
+0
-1
EnterpriseProjectSpecialDebtProjectPageBody.java
...in/model/EnterpriseProjectSpecialDebtProjectPageBody.java
+0
-1
EnterpriseUipSearchBody.java
...dsk/common/core/domain/model/EnterpriseUipSearchBody.java
+0
-1
EnterpriseService.java
...ain/java/com/dsk/system/dskService/EnterpriseService.java
+2
-2
No files found.
dsk-common/src/main/java/com/dsk/common/core/domain/model/EnterpriseProjectApprovalProjectPageBody.java
View file @
4cb6bdcb
...
...
@@ -28,7 +28,6 @@ public class EnterpriseProjectApprovalProjectPageBody extends BasePage {
/*
* 1金额倒序,2金额正序,3计划开工时间倒序,4计划开工时间正序,13计划完工时间倒序,14计划完工时间正序
*/
@NotNull
(
message
=
"排序条件不能为空"
)
private
Integer
sort
;
}
dsk-common/src/main/java/com/dsk/common/core/domain/model/EnterpriseProjectBidNoticePageBody.java
View file @
4cb6bdcb
...
...
@@ -32,7 +32,6 @@ public class EnterpriseProjectBidNoticePageBody extends BasePage {
/*
* 1金额倒序,2金额正序,3时间倒序,4时间正序
*/
@NotNull
(
message
=
"排序条件不能为空"
)
private
Integer
sort
;
/**
...
...
dsk-common/src/main/java/com/dsk/common/core/domain/model/EnterpriseProjectBidPlanPageBody.java
View file @
4cb6bdcb
...
...
@@ -27,7 +27,6 @@ public class EnterpriseProjectBidPlanPageBody extends BasePage {
/*
* 排序字段:1金额倒序,2金额正序,3发布时间倒序,4发布时间正序,15预计招标时间倒序,16预计招标时间正序
*/
@NotNull
(
message
=
"排序条件不能为空"
)
private
Integer
sort
;
...
...
dsk-common/src/main/java/com/dsk/common/core/domain/model/EnterpriseProjectLandTransactionPageBody.java
View file @
4cb6bdcb
...
...
@@ -33,7 +33,6 @@ public class EnterpriseProjectLandTransactionPageBody extends BasePage {
/*
* 1金额倒序,2金额正序,3时间倒序,4时间正序,11面积倒序,12面积正序
*/
@NotNull
(
message
=
"排序条件不能为空"
)
private
Integer
sort
;
}
dsk-common/src/main/java/com/dsk/common/core/domain/model/EnterpriseProjectSpecialDebtProjectPageBody.java
View file @
4cb6bdcb
...
...
@@ -27,7 +27,6 @@ public class EnterpriseProjectSpecialDebtProjectPageBody extends BasePage {
/*
* 排序字段:1总投资金额倒序,2总投资金额正序,17项目资本金倒序,18项目资本金正序,19专项债用作资本金倒序,20专项债用作资本金正序
*/
@NotNull
(
message
=
"排序条件不能为空"
)
private
Integer
sort
;
}
dsk-common/src/main/java/com/dsk/common/core/domain/model/EnterpriseUipSearchBody.java
View file @
4cb6bdcb
...
...
@@ -23,7 +23,6 @@ public class EnterpriseUipSearchBody extends BasePage {
/*
* 1供应商倒序,2供应商正序,3拟建项目倒序,4拟建项目正序,5招标公告倒序,6招标公告正序,7土地倒序,8土地正序
*/
@NotNull
(
message
=
"排序条件不能为空"
)
private
Integer
sort
;
/**
...
...
dsk-system/src/main/java/com/dsk/system/dskService/EnterpriseService.java
View file @
4cb6bdcb
...
...
@@ -144,7 +144,7 @@ public class EnterpriseService {
public
R
getUipId
(
String
companyName
)
throws
Exception
{
Map
<
String
,
Object
>
params
=
new
HashMap
<>();
params
.
put
(
"companyName"
,
companyName
);
params
.
put
(
"companyName"
,
companyName
);
Map
<
String
,
Object
>
map
=
dskOpenApiUtil
.
requestBody
(
"/operate/enterprise/getUipId"
,
params
);
return
BeanUtil
.
toBean
(
map
,
R
.
class
);
}
...
...
@@ -186,7 +186,7 @@ public class EnterpriseService {
}
public
R
uipGroupData
()
throws
Exception
{
Map
<
String
,
Object
>
map
=
dskOpenApiUtil
.
requestBody
(
"/operate/enterprise/uipGroupData"
,
n
ull
);
Map
<
String
,
Object
>
map
=
dskOpenApiUtil
.
requestBody
(
"/operate/enterprise/uipGroupData"
,
n
ew
HashMap
<>()
);
return
BeanUtil
.
toBean
(
map
,
R
.
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