ADD:ICD添加检测是否两个开关字段

This commit is contained in:
贾同学
2025-08-25 14:39:17 +08:00
parent 415fc0c129
commit cd41320032
2 changed files with 16 additions and 0 deletions

View File

@@ -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;
/**
* 分页查询实体
*/

View File

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