数据有效位数及变更方法修改
This commit is contained in:
@@ -37,6 +37,9 @@ public class BusinessAssayProjectAndParameterRespVO implements Serializable {
|
|||||||
|
|
||||||
@Schema(description = "小数位数")
|
@Schema(description = "小数位数")
|
||||||
private Integer decimalPosition;
|
private Integer decimalPosition;
|
||||||
|
|
||||||
|
@Schema(description = "有效数字位")
|
||||||
|
private Integer effectiveDigit;
|
||||||
|
|
||||||
/** 元素或参数单位 **/
|
/** 元素或参数单位 **/
|
||||||
@Schema(description = "元素或参数单位")
|
@Schema(description = "元素或参数单位")
|
||||||
|
|||||||
@@ -48,6 +48,9 @@ public class BusinessAssayProjectDataPageReqVO extends PageParam {
|
|||||||
@Schema(description = "小数位")
|
@Schema(description = "小数位")
|
||||||
private Integer decimalPosition;
|
private Integer decimalPosition;
|
||||||
|
|
||||||
|
@Schema(description = "有效数字位")
|
||||||
|
private Integer effectiveDigit;
|
||||||
|
|
||||||
@Schema(description = "是否不参与超差判定")
|
@Schema(description = "是否不参与超差判定")
|
||||||
private Integer isNotAssessment;
|
private Integer isNotAssessment;
|
||||||
|
|
||||||
|
|||||||
@@ -54,6 +54,9 @@ public class BusinessAssayProjectDataReqVO {
|
|||||||
@Schema(description = "小数位")
|
@Schema(description = "小数位")
|
||||||
private Integer decimalPosition;
|
private Integer decimalPosition;
|
||||||
|
|
||||||
|
@Schema(description = "有效数字位")
|
||||||
|
private Integer effectiveDigit;
|
||||||
|
|
||||||
@Schema(description = "是否不参与超差判定")
|
@Schema(description = "是否不参与超差判定")
|
||||||
private Integer isNotAssessment;
|
private Integer isNotAssessment;
|
||||||
|
|
||||||
|
|||||||
@@ -57,6 +57,9 @@ public class BusinessAssayProjectDataRespVO {
|
|||||||
@ExcelProperty("小数位")
|
@ExcelProperty("小数位")
|
||||||
private Integer decimalPosition;
|
private Integer decimalPosition;
|
||||||
|
|
||||||
|
@Schema(description = "有效数字位")
|
||||||
|
private Integer effectiveDigit;
|
||||||
|
|
||||||
@Schema(description = "是否不参与超差判定", requiredMode = Schema.RequiredMode.REQUIRED)
|
@Schema(description = "是否不参与超差判定", requiredMode = Schema.RequiredMode.REQUIRED)
|
||||||
@ExcelProperty("是否不参与超差判定")
|
@ExcelProperty("是否不参与超差判定")
|
||||||
private Integer isNotAssessment;
|
private Integer isNotAssessment;
|
||||||
|
|||||||
@@ -45,6 +45,9 @@ public class BusinessAssayProjectDataSaveReqVO {
|
|||||||
@Schema(description = "小数位")
|
@Schema(description = "小数位")
|
||||||
private Integer decimalPosition;
|
private Integer decimalPosition;
|
||||||
|
|
||||||
|
@Schema(description = "有效数字位")
|
||||||
|
private Integer effectiveDigit;
|
||||||
|
|
||||||
@Schema(description = "是否不参与超差判定", requiredMode = Schema.RequiredMode.REQUIRED)
|
@Schema(description = "是否不参与超差判定", requiredMode = Schema.RequiredMode.REQUIRED)
|
||||||
@NotNull(message = "是否不参与超差判定不能为空")
|
@NotNull(message = "是否不参与超差判定不能为空")
|
||||||
private Integer isNotAssessment;
|
private Integer isNotAssessment;
|
||||||
|
|||||||
@@ -37,6 +37,9 @@ public class BusinessQCManagementProjectDataPageReqVO extends PageParam {
|
|||||||
@Schema(description = "小数位")
|
@Schema(description = "小数位")
|
||||||
private Integer decimalPosition;
|
private Integer decimalPosition;
|
||||||
|
|
||||||
|
@Schema(description = "有效数字位")
|
||||||
|
private Integer effectiveDigit;
|
||||||
|
|
||||||
@Schema(description = "是否不参与超差判定")
|
@Schema(description = "是否不参与超差判定")
|
||||||
private Integer isNotAssessment;
|
private Integer isNotAssessment;
|
||||||
|
|
||||||
|
|||||||
@@ -37,6 +37,9 @@ public class BusinessQCManagementProjectDataReqVO {
|
|||||||
@Schema(description = "小数位")
|
@Schema(description = "小数位")
|
||||||
private Integer decimalPosition;
|
private Integer decimalPosition;
|
||||||
|
|
||||||
|
@Schema(description = "有效数字位")
|
||||||
|
private Integer effectiveDigit;
|
||||||
|
|
||||||
@Schema(description = "是否不参与超差判定")
|
@Schema(description = "是否不参与超差判定")
|
||||||
private Integer isNotAssessment;
|
private Integer isNotAssessment;
|
||||||
|
|
||||||
|
|||||||
@@ -48,6 +48,9 @@ public class BusinessQCManagementProjectDataRespVO {
|
|||||||
@ExcelProperty("小数位")
|
@ExcelProperty("小数位")
|
||||||
private Integer decimalPosition;
|
private Integer decimalPosition;
|
||||||
|
|
||||||
|
@Schema(description = "有效数字位")
|
||||||
|
private Integer effectiveDigit;
|
||||||
|
|
||||||
@Schema(description = "是否不参与超差判定", requiredMode = Schema.RequiredMode.REQUIRED)
|
@Schema(description = "是否不参与超差判定", requiredMode = Schema.RequiredMode.REQUIRED)
|
||||||
@ExcelProperty("是否不参与超差判定")
|
@ExcelProperty("是否不参与超差判定")
|
||||||
private Integer isNotAssessment;
|
private Integer isNotAssessment;
|
||||||
|
|||||||
@@ -40,6 +40,9 @@ public class BusinessQCManagementProjectDataSaveReqVO {
|
|||||||
@Schema(description = "小数位")
|
@Schema(description = "小数位")
|
||||||
private Integer decimalPosition;
|
private Integer decimalPosition;
|
||||||
|
|
||||||
|
@Schema(description = "有效数字位")
|
||||||
|
private Integer effectiveDigit;
|
||||||
|
|
||||||
@Schema(description = "是否不参与超差判定", requiredMode = Schema.RequiredMode.REQUIRED)
|
@Schema(description = "是否不参与超差判定", requiredMode = Schema.RequiredMode.REQUIRED)
|
||||||
@NotNull(message = "是否不参与超差判定不能为空")
|
@NotNull(message = "是否不参与超差判定不能为空")
|
||||||
private Integer isNotAssessment;
|
private Integer isNotAssessment;
|
||||||
|
|||||||
@@ -46,6 +46,9 @@ public class BusinessSubParentSampleAssessmentProjectPageReqVO extends PageParam
|
|||||||
@Schema(description = "小数位")
|
@Schema(description = "小数位")
|
||||||
private Integer decimalPosition;
|
private Integer decimalPosition;
|
||||||
|
|
||||||
|
@Schema(description = "有效数字位")
|
||||||
|
private Integer effectiveDigit;
|
||||||
|
|
||||||
@Schema(description = "判定值")
|
@Schema(description = "判定值")
|
||||||
private String assessmentValue;
|
private String assessmentValue;
|
||||||
|
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user