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
4d595e2d
Commit
4d595e2d
authored
Oct 11, 2023
by
danfuman
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'V20230915' of
http://192.168.60.201/root/dsk-operate-sys
into V20230915
parents
0471de0a
82fd2ffb
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
CustomerController.java
.../main/java/com/dsk/biz/controller/CustomerController.java
+1
-1
EnterpriseProjectService.java
...in/java/com/dsk/jsk/service/EnterpriseProjectService.java
+1
-1
No files found.
dsk-module/dsk-biz-api/src/main/java/com/dsk/biz/controller/CustomerController.java
View file @
4d595e2d
...
@@ -77,7 +77,7 @@ public class CustomerController extends BaseController {
...
@@ -77,7 +77,7 @@ public class CustomerController extends BaseController {
@PostMapping
(
"/claim"
)
@PostMapping
(
"/claim"
)
@RepeatSubmit
@RepeatSubmit
public
R
<
Map
<
String
,
Object
>>
claim
(
@RequestBody
Customer
customer
)
{
public
R
<
Map
<
String
,
Object
>>
claim
(
@RequestBody
Customer
customer
)
{
if
(
ObjectUtils
.
isEmpty
(
customer
.
getUipId
()))
throw
new
BeanException
(
"城投uipId不能为空"
);
//
if (ObjectUtils.isEmpty(customer.getUipId())) throw new BeanException("城投uipId不能为空");
boolean
add
=
baseService
.
add
(
customer
);
boolean
add
=
baseService
.
add
(
customer
);
if
(
add
)
{
if
(
add
)
{
Map
<
String
,
Object
>
map
=
new
HashMap
<>();
Map
<
String
,
Object
>
map
=
new
HashMap
<>();
...
...
dsk-module/dsk-biz-api/src/main/java/com/dsk/jsk/service/EnterpriseProjectService.java
View file @
4d595e2d
...
@@ -277,7 +277,7 @@ public class EnterpriseProjectService {
...
@@ -277,7 +277,7 @@ public class EnterpriseProjectService {
}
}
public
TableDataInfo
importantList
(
EnterpriseProjectImportantListDto
dto
)
throws
Exception
{
public
TableDataInfo
importantList
(
EnterpriseProjectImportantListDto
dto
)
throws
Exception
{
if
(
ObjectUtil
.
isEmpty
(
dto
.
getC
ompanyI
d
()))
throw
new
BeanException
(
"企业id不能为空!"
);
if
(
ObjectUtil
.
isEmpty
(
dto
.
getC
i
d
()))
throw
new
BeanException
(
"企业id不能为空!"
);
Map
<
String
,
Object
>
map
=
dskOpenApiUtil
.
requestBody
(
"/operate/enterpriseProject/importantList"
,
BeanUtil
.
beanToMap
(
dto
,
false
,
false
));
Map
<
String
,
Object
>
map
=
dskOpenApiUtil
.
requestBody
(
"/operate/enterpriseProject/importantList"
,
BeanUtil
.
beanToMap
(
dto
,
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