Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
B
bailuntec-cost
Overview
Overview
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
huluobin
bailuntec-cost
Commits
49f8c059
Commit
49f8c059
authored
Sep 03, 2021
by
liyanlin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix
parent
6e45a399
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
8 deletions
+8
-8
IndexController.java
.../blt/other/module/commons/controller/IndexController.java
+8
-8
No files found.
cost-service/src/main/java/com/blt/other/module/commons/controller/IndexController.java
View file @
49f8c059
...
@@ -49,13 +49,13 @@ public class IndexController {
...
@@ -49,13 +49,13 @@ public class IndexController {
return
result
;
return
result
;
}
}
@ApiOperation
(
"费用计划列表,condition=lt
(小于)/le(小于等于)/eq(登宇)/ne(不等于)/ge(大于等于)/gt(大于)/in(包含)/notIn(
不包含),statusList优先级大于status"
)
@ApiOperation
(
"费用计划列表,condition=lt
/le/eq/ne/ge/gt/in/notIn(小于/小于等于/等于/不等于/大于等于/大于/包含/
不包含),statusList优先级大于status"
)
@GetMapping
(
"/costPlanList"
)
@GetMapping
(
"/costPlanList"
)
public
Map
<
String
,
Object
>
costPlanList
(
Integer
userid
,
public
Map
<
String
,
Object
>
costPlanList
(
@RequestParam
(
value
=
"userid"
)
Integer
userid
,
Integer
status
,
Integer
status
,
String
condition
,
String
condition
,
@RequestParam
(
value
=
"statusList"
,
required
=
false
)
List
<
Integer
>
statusList
,
@RequestParam
(
value
=
"statusList"
,
required
=
false
)
List
<
Integer
>
statusList
,
Integer
limit
)
{
Integer
limit
)
{
List
<
CostPlanDto
>
costPlanDtos
=
null
;
List
<
CostPlanDto
>
costPlanDtos
=
null
;
costPlanDtos
=
indexService
.
getCostPlanList
(
userid
,
status
,
condition
,
statusList
,
limit
);
costPlanDtos
=
indexService
.
getCostPlanList
(
userid
,
status
,
condition
,
statusList
,
limit
);
Map
<
String
,
Object
>
result
=
new
HashMap
<>();
Map
<
String
,
Object
>
result
=
new
HashMap
<>();
...
@@ -75,9 +75,9 @@ public class IndexController {
...
@@ -75,9 +75,9 @@ public class IndexController {
return
result
;
return
result
;
}
}
@ApiOperation
(
"费用列表,condition=lt
(小于)/le(小于等于)/eq(登宇)/ne(不等于)/ge(大于等于)/gt(大于)/in(包含)/notIn(
不包含),statusList优先级大于status"
)
@ApiOperation
(
"费用列表,condition=lt
/le/eq/ne/ge/gt/in/notIn(小于/小于等于/等于/不等于/大于等于/大于/包含/
不包含),statusList优先级大于status"
)
@GetMapping
(
"/costList"
)
@GetMapping
(
"/costList"
)
public
Map
<
String
,
Object
>
costList
(
Integer
userid
,
public
Map
<
String
,
Object
>
costList
(
@RequestParam
(
value
=
"userid"
)
Integer
userid
,
Integer
status
,
Integer
status
,
String
condition
,
String
condition
,
@RequestParam
(
value
=
"statusList"
,
required
=
false
)
List
<
Integer
>
statusList
,
@RequestParam
(
value
=
"statusList"
,
required
=
false
)
List
<
Integer
>
statusList
,
...
...
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