|
|
@@ -45,11 +45,11 @@ public class GrainConditionController {
|
|
45
|
45
|
@ApiImplicitParam(name = "TestStartDate", value = "检测日期开始", paramType = "query"),
|
|
46
|
46
|
@ApiImplicitParam(name = "TestEndDate", value = "检测日期结束", paramType = "query")
|
|
47
|
47
|
})
|
|
48
|
|
- public PageInfo<Map<String,Object>> getDataList(Integer pageNum, Integer pageSize,String houseNo, String orgId, String TestStartDate, String TestEndDate){
|
|
|
48
|
+ public PageInfo<Map<String,Object>> getDataList(Integer pageNum, Integer pageSize,String houseNo, String orgId, String createTimeStart, String createTimeEnd){
|
|
49
|
49
|
PageHelper.startPage(pageNum, pageSize);
|
|
50
|
50
|
|
|
51
|
51
|
|
|
52
|
|
- List<Map<String,Object>> retList = grainConditionService.getDataList(houseNo, orgId,TestStartDate, TestEndDate);
|
|
|
52
|
+ List<Map<String,Object>> retList = grainConditionService.getDataList(houseNo, orgId,createTimeStart, createTimeEnd);
|
|
53
|
53
|
PageInfo<Map<String,Object>> pageInfo = new PageInfo<Map<String,Object>>(retList);
|
|
54
|
54
|
return pageInfo;
|
|
55
|
55
|
}
|