From cd41320032603455d39632aa5495d54aa746fc9e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B4=BE=E5=90=8C=E5=AD=A6?= Date: Mon, 25 Aug 2025 14:39:17 +0800 Subject: [PATCH] =?UTF-8?q?ADD:ICD=E6=B7=BB=E5=8A=A0=E6=A3=80=E6=B5=8B?= =?UTF-8?q?=E6=98=AF=E5=90=A6=E4=B8=A4=E4=B8=AA=E5=BC=80=E5=85=B3=E5=AD=97?= =?UTF-8?q?=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../com/njcn/gather/icd/pojo/param/PqIcdPathParam.java | 6 ++++++ .../java/com/njcn/gather/icd/pojo/po/PqIcdPath.java | 10 ++++++++++ 2 files changed, 16 insertions(+) diff --git a/detection/src/main/java/com/njcn/gather/icd/pojo/param/PqIcdPathParam.java b/detection/src/main/java/com/njcn/gather/icd/pojo/param/PqIcdPathParam.java index 8e054ba7..e55f0005 100644 --- a/detection/src/main/java/com/njcn/gather/icd/pojo/param/PqIcdPathParam.java +++ b/detection/src/main/java/com/njcn/gather/icd/pojo/param/PqIcdPathParam.java @@ -26,6 +26,12 @@ public class PqIcdPathParam { @Pattern(regexp = PatternRegex.ICD_PATH_REGEX, message = DetectionValidMessage.ICD_PATH_FORMAT_ERROR) private String path; + @ApiModelProperty(value = "是否支持电压相角、电流相角指标,0表示否,1表示是", required = true) + private Integer angle; + + @ApiModelProperty(value = "角型接线时是否使用相别的指标来进行检测,0表示否,1表示是", required = true) + private Integer usePhaseIndex; + /** * 分页查询实体 */ diff --git a/detection/src/main/java/com/njcn/gather/icd/pojo/po/PqIcdPath.java b/detection/src/main/java/com/njcn/gather/icd/pojo/po/PqIcdPath.java index 0d561325..542a8faf 100644 --- a/detection/src/main/java/com/njcn/gather/icd/pojo/po/PqIcdPath.java +++ b/detection/src/main/java/com/njcn/gather/icd/pojo/po/PqIcdPath.java @@ -36,5 +36,15 @@ public class PqIcdPath extends BaseEntity implements Serializable { * 状态:0-删除 1-正常 */ private Integer state; + + /** + * 是否支持电压相角、电流相角指标,0表示否,1表示是 + */ + private Integer angle; + + /** + * 角型接线时是否使用相别的指标来进行检测,0表示否,1表示是 + */ + private Integer usePhaseIndex; }