|
@ -43,6 +43,8 @@ public class EquipmentManageController {
|
43
|
43
|
public CommonResponse<PageBean<Map<String, Object>>> queryEquipmentInfo(@RequestBody CommonRequest<HashMap<String, Object>> conditionMap) throws Exception {
|
44
|
44
|
// 当前页数
|
45
|
45
|
int pageNumber = conditionMap.getPageNumber() < 1 ? 1 : conditionMap.getPageNumber();
|
|
46
|
|
|
47
|
|
46
|
48
|
// 每页条数
|
47
|
49
|
int pageSize = conditionMap.getPageSize() < 1 ? EbcConstant.DEFAULT_PAGE_SIZE : conditionMap.getPageSize();
|
48
|
50
|
conditionMap.setPageSize(pageSize);
|