1.广州超高压微调

This commit is contained in:
2024-11-20 11:00:02 +08:00
parent 2f84ace8f1
commit 42c1faa5dc
2 changed files with 2 additions and 2 deletions

View File

@@ -162,7 +162,7 @@ public class PmsStatationStatController extends BaseController {
@ApiImplicitParam(name = "param", value = "条件参数", required = true) @ApiImplicitParam(name = "param", value = "条件参数", required = true)
}) })
public HttpResult<List<StatationStat>> getPowerInfo(@RequestBody PmsStatationStatInfoParam param) { public HttpResult<List<StatationStat>> getPowerInfo(@RequestBody PmsStatationStatInfoParam param) {
String methodDescribe = getMethodDescribe("getStatationStatInfo"); String methodDescribe = getMethodDescribe("getPowerInfo");
List<StatationStat> powerInfo = statationStatService.getPowerInfo(param); List<StatationStat> powerInfo = statationStatService.getPowerInfo(param);
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.SUCCESS, powerInfo, methodDescribe); return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.SUCCESS, powerInfo, methodDescribe);
} }

View File

@@ -26,7 +26,7 @@ public class LineParam {
@ApiModelProperty(name = "name",value = "监测点名称",required = true) @ApiModelProperty(name = "name",value = "监测点名称",required = true)
@NotBlank(message = "监测点名称不可为空") @NotBlank(message = "监测点名称不可为空")
@Pattern(regexp = PatternRegex.DEV_NAME_REGEX,message = "监测点名称违规") //@Pattern(regexp = PatternRegex.DEV_NAME_REGEX,message = "监测点名称违规")
private String name; private String name;
@ApiModelProperty(name = "name",value = "原监测点名称",required = true) @ApiModelProperty(name = "name",value = "原监测点名称",required = true)