标准预警查询完全体

This commit is contained in:
zhaokaiyao@91isoft.com
2021-11-24 17:08:25 +08:00
parent cb06a54a3d
commit 81f4444164
4 changed files with 188 additions and 150 deletions
@@ -42,7 +42,7 @@ public class EarlyWarningEOController extends BaseController<EarlyWarningEO> {
* @author zj
* date 2021-06-15
**/
@GetMapping("/StandWarning")
@GetMapping("/${restPath}/StandWarning")
@ApiOperation("标准预警查询")
public ResponseMessage newPageInfo(@RequestParam(defaultValue = "1", value = "newStandPage")int newStandPage, @RequestParam(defaultValue = "10", value = "newStandPageSize") int newStandPageSize,
@RequestParam(defaultValue = "1", value = "oldStandPage")int oldStandPage, @RequestParam(defaultValue = "10", value = "oldStandPageSize") int oldStandPageSize,
@@ -55,7 +55,7 @@ public class EarlyWarningEOController extends BaseController<EarlyWarningEO> {
return getResponseMessage(list1, list2, list3, list4);
}
@GetMapping("/StandWarning")
@GetMapping("/getStandWarning")
@ApiOperation("标准预警查询")
public ResponseMessage<IPage<StandWarningEO>> getStandWaring(StandWarningEO queryPageEO){
IPage<StandWarningEO> standWarning = earlyWarningEOService.getStandWarning(queryPageEO);
@@ -37,7 +37,7 @@ public class EarlyWarningEO extends BaseEntity {
@TableField("STAND_TYPE")
private String standType;
@ApiModelProperty("标准")
@ApiModelProperty("标准号")
@TableField("STAND_CODE")
private String standCode;