|
@@ -114,9 +114,6 @@ public class QmsQueueResultController extends BaseRESTfulController {
|
|
})
|
|
})
|
|
@PostMapping("/getQueueListByQueueUp")
|
|
@PostMapping("/getQueueListByQueueUp")
|
|
public RESTfulResult getQueueListByQueueUp(@RequestBody(required=false) Map<String,Object> mapValue,
|
|
public RESTfulResult getQueueListByQueueUp(@RequestBody(required=false) Map<String,Object> mapValue,
|
|
- Integer apiId,
|
|
|
|
- Integer pageNum,
|
|
|
|
- Integer pageSize,
|
|
|
|
Integer locationId,
|
|
Integer locationId,
|
|
String capacityNumber,
|
|
String capacityNumber,
|
|
Integer isSpelling
|
|
Integer isSpelling
|
|
@@ -125,7 +122,6 @@ public class QmsQueueResultController extends BaseRESTfulController {
|
|
mapValue.put("locationId", locationId);
|
|
mapValue.put("locationId", locationId);
|
|
if(capacityNumber != null && !"".equals(capacityNumber))
|
|
if(capacityNumber != null && !"".equals(capacityNumber))
|
|
mapValue.put("capacityNumber", capacityNumber);
|
|
mapValue.put("capacityNumber", capacityNumber);
|
|
- PageHelper.startPage(pageNum,pageSize);
|
|
|
|
if(isSpelling == 1){
|
|
if(isSpelling == 1){
|
|
//多拼
|
|
//多拼
|
|
return success(qmsQueueResultService.getQueueListByQueueUpSpelling(mapValue));
|
|
return success(qmsQueueResultService.getQueueListByQueueUpSpelling(mapValue));
|