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; }