|
|
@@ -44,7 +44,7 @@ public class StorageAccountRecordController {
|
|
44
|
44
|
@ApiImplicitParam(name="endDate", value="结束时间", paramType="query")
|
|
45
|
45
|
})
|
|
46
|
46
|
public PageInfo<Map<String, Object>> sumAccountList(HttpServletRequest request, Integer pageNum, Integer pageSize,
|
|
47
|
|
- Integer lspz, Integer lsxz, String startDate, String endDate) {
|
|
|
47
|
+ Integer lspz, Integer lsxz, String year, String month) {
|
|
48
|
48
|
Map<String, Object> map = new HashMap<String, Object>();
|
|
49
|
49
|
if (lspz != null) {
|
|
50
|
50
|
map.put("pz", lspz+"");
|
|
|
@@ -52,6 +52,12 @@ public class StorageAccountRecordController {
|
|
52
|
52
|
if (lsxz != null) {
|
|
53
|
53
|
map.put("hwxz", lsxz+"");
|
|
54
|
54
|
}
|
|
|
55
|
+ if (year != null) {
|
|
|
56
|
+ map.put("year", year+"");
|
|
|
57
|
+ }
|
|
|
58
|
+ if (month != null) {
|
|
|
59
|
+ map.put("month", month+"");
|
|
|
60
|
+ }
|
|
55
|
61
|
if (pageNum!=null && pageSize!=null) {
|
|
56
|
62
|
PageHelper.startPage(pageNum, pageSize);
|
|
57
|
63
|
}
|