|
@@ -46,12 +46,12 @@ public class StorageThreetempCheckController {
|
46
|
46
|
@ApiImplicitParam(name = "searchStartDate", value = "开始日期", paramType = "query"),
|
47
|
47
|
@ApiImplicitParam(name = "searchEndDate", value = "结束日期", paramType = "query")
|
48
|
48
|
})
|
49
|
|
- public PageInfo<Map<String, Object>> listPage(Integer pageNum, Integer pageSize, String houseId, String searchStartDate, String searchEndDate, Integer orgId) {
|
|
49
|
+ public PageInfo<Map<String, Object>> listPage(Integer pageNum, Integer pageSize, String houseCode, String searchStartDate, String searchEndDate, Integer orgId) {
|
50
|
50
|
// 查询条件map
|
51
|
51
|
Map<String, Object> map = new HashMap<>();
|
52
|
52
|
// 仓房编码
|
53
|
|
- if (ParameterUtil.isnotnull(houseId))
|
54
|
|
- map.put("storehouse", houseId);
|
|
53
|
+ if (ParameterUtil.isnotnull(houseCode))
|
|
54
|
+ map.put("storehouse", houseCode);
|
55
|
55
|
// 查询开始时间
|
56
|
56
|
if (StringUtils.isNotBlank(searchStartDate))
|
57
|
57
|
map.put("startDate", ParameterUtil.string2datetime(searchStartDate + " 00:00:00"));
|