|
@@ -55,7 +55,13 @@ public class BmstruckStatementController extends BaseRESTfulController {
|
|
public RESTfulResult getTruckStatementList(@RequestBody(required = false) Map<String, Object> mapValue,
|
|
public RESTfulResult getTruckStatementList(@RequestBody(required = false) Map<String, Object> mapValue,
|
|
Integer pageNum,
|
|
Integer pageNum,
|
|
Integer pageSize,
|
|
Integer pageSize,
|
|
- Integer apiId) {
|
|
|
|
|
|
+ Integer apiId,
|
|
|
|
+ String userId,
|
|
|
|
+ String startTime,
|
|
|
|
+ String endTime,
|
|
|
|
+ String con) {
|
|
|
|
+ mapValue.put("userId",userId);
|
|
|
|
+ mapValue.put("con",con);
|
|
List<Map<String, Object>> truckStatementList = bmstruckStatementService.getTruckStatementList(mapValue);
|
|
List<Map<String, Object>> truckStatementList = bmstruckStatementService.getTruckStatementList(mapValue);
|
|
PageHelper.startPage(pageNum, pageSize);
|
|
PageHelper.startPage(pageNum, pageSize);
|
|
//分页查询数据
|
|
//分页查询数据
|