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
e6040194
Commit
e6040194
authored
Jun 02, 2023
by
zhangyi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
城投企业查询100%
parent
37bc17cf
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
EnterpriseProjectService.java
...a/com/dsk/system/dskService/EnterpriseProjectService.java
+2
-2
EnterpriseService.java
...ain/java/com/dsk/system/dskService/EnterpriseService.java
+2
-2
No files found.
dsk-system/src/main/java/com/dsk/system/dskService/EnterpriseProjectService.java
View file @
e6040194
...
@@ -107,13 +107,13 @@ public class EnterpriseProjectService {
...
@@ -107,13 +107,13 @@ public class EnterpriseProjectService {
public
TableDataInfo
bidPlanPage
(
Object
body
)
throws
Exception
{
public
TableDataInfo
bidPlanPage
(
Object
body
)
throws
Exception
{
Map
<
String
,
Object
>
map
=
dskOpenApiUtil
.
requestBody
Local
(
"/operate/enterpriseProject/bidPlanPage"
,
BeanUtil
.
beanToMap
(
body
,
false
,
false
));
Map
<
String
,
Object
>
map
=
dskOpenApiUtil
.
requestBody
(
"/operate/enterpriseProject/bidPlanPage"
,
BeanUtil
.
beanToMap
(
body
,
false
,
false
));
return
dskOpenApiUtil
.
responsePage
(
map
);
return
dskOpenApiUtil
.
responsePage
(
map
);
}
}
public
R
bidPlanDetail
(
Object
body
)
throws
Exception
{
public
R
bidPlanDetail
(
Object
body
)
throws
Exception
{
Map
<
String
,
Object
>
map
=
dskOpenApiUtil
.
requestBody
Local
(
"/operate/enterpriseProject/bidPlanDetail"
,
BeanUtil
.
beanToMap
(
body
,
false
,
false
));
Map
<
String
,
Object
>
map
=
dskOpenApiUtil
.
requestBody
(
"/operate/enterpriseProject/bidPlanDetail"
,
BeanUtil
.
beanToMap
(
body
,
false
,
false
));
Map
data
=
MapUtils
.
getMap
(
map
,
"data"
,
null
);
Map
data
=
MapUtils
.
getMap
(
map
,
"data"
,
null
);
String
contentId
=
MapUtils
.
getString
(
data
,
"contentId"
);
String
contentId
=
MapUtils
.
getString
(
data
,
"contentId"
);
if
(
ObjectUtil
.
isEmpty
(
contentId
))
{
if
(
ObjectUtil
.
isEmpty
(
contentId
))
{
...
...
dsk-system/src/main/java/com/dsk/system/dskService/EnterpriseService.java
View file @
e6040194
...
@@ -149,7 +149,7 @@ public class EnterpriseService {
...
@@ -149,7 +149,7 @@ public class EnterpriseService {
}
}
public
TableDataInfo
uipSerach
(
EnterpriseUipSearchBody
body
)
throws
Exception
{
public
TableDataInfo
uipSerach
(
EnterpriseUipSearchBody
body
)
throws
Exception
{
Map
<
String
,
Object
>
map
=
dskOpenApiUtil
.
requestBody
Local
(
"/operate/enterprise/uipSerach"
,
BeanUtil
.
beanToMap
(
body
,
false
,
false
));
Map
<
String
,
Object
>
map
=
dskOpenApiUtil
.
requestBody
(
"/operate/enterprise/uipSerach"
,
BeanUtil
.
beanToMap
(
body
,
false
,
false
));
Integer
code
=
MapUtils
.
getInteger
(
map
,
"code"
,
300
);
Integer
code
=
MapUtils
.
getInteger
(
map
,
"code"
,
300
);
if
(
200
!=
code
)
throw
new
RuntimeException
();
if
(
200
!=
code
)
throw
new
RuntimeException
();
...
@@ -185,7 +185,7 @@ public class EnterpriseService {
...
@@ -185,7 +185,7 @@ public class EnterpriseService {
}
}
public
R
uipGroupData
()
throws
Exception
{
public
R
uipGroupData
()
throws
Exception
{
Map
<
String
,
Object
>
map
=
dskOpenApiUtil
.
requestBody
Local
(
"/operate/enterprise/uipGroupData"
,
null
);
Map
<
String
,
Object
>
map
=
dskOpenApiUtil
.
requestBody
(
"/operate/enterprise/uipGroupData"
,
null
);
return
BeanUtil
.
toBean
(
map
,
R
.
class
);
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