项目类型 上下限

plp
kkk-ops 2 days ago
parent aed851fbc5
commit 3196ab9fa8

@ -49,4 +49,16 @@ public class DvSubjectPageReqVO extends PageParam {
@Schema(description = "id集合导出用") @Schema(description = "id集合导出用")
private String ids; private String ids;
/**
*
*/
@Schema(description = "上限值")
private Double upperVal;
/**
*
*/
@Schema(description = "下限值")
private Double lowerVal;
} }

@ -72,4 +72,18 @@ public class DvSubjectRespVO{
@ExcelProperty("创建人名字") @ExcelProperty("创建人名字")
private String creatorName; private String creatorName;
/**
*
*/
@Schema(description = "上限值")
@ExcelProperty("上限值")
private Double upperVal;
/**
*
*/
@Schema(description = "下限值")
@ExcelProperty("下限值")
private Double lowerVal;
} }

@ -43,8 +43,20 @@ public class DvSubjectSaveReqVO {
@NotEmpty(message = "值类型") @NotEmpty(message = "值类型")
private String valueType; private String valueType;
@Schema(description = "判定基准", requiredMode = Schema.RequiredMode.REQUIRED) @Schema(description = "判定基准")
@NotEmpty(message = "判定基准") // @NotEmpty(message = "判定基准")
private String judgmentCriteria; private String judgmentCriteria;
/**
*
*/
@Schema(description = "上限值")
private Double upperVal;
/**
*
*/
@Schema(description = "下限值")
private Double lowerVal;
} }

@ -67,4 +67,13 @@ public class DvSubjectDO extends BaseDO {
*/ */
private String judgmentCriteria; private String judgmentCriteria;
/**
*
*/
private Double upperVal;
/**
*
*/
private Double lowerVal;
} }
Loading…
Cancel
Save