数据有效位数及变更方法修改

This commit is contained in:
2026-02-28 15:14:47 +08:00
parent fc06217109
commit 61c143a295
40 changed files with 404 additions and 6 deletions

View File

@@ -38,6 +38,9 @@ public class BusinessAssayProjectAndParameterRespVO implements Serializable {
@Schema(description = "小数位数")
private Integer decimalPosition;
@Schema(description = "有效数字位")
private Integer effectiveDigit;
/** 元素或参数单位 **/
@Schema(description = "元素或参数单位")
private String unit;

View File

@@ -48,6 +48,9 @@ public class BusinessAssayProjectDataPageReqVO extends PageParam {
@Schema(description = "小数位")
private Integer decimalPosition;
@Schema(description = "有效数字位")
private Integer effectiveDigit;
@Schema(description = "是否不参与超差判定")
private Integer isNotAssessment;

View File

@@ -54,6 +54,9 @@ public class BusinessAssayProjectDataReqVO {
@Schema(description = "小数位")
private Integer decimalPosition;
@Schema(description = "有效数字位")
private Integer effectiveDigit;
@Schema(description = "是否不参与超差判定")
private Integer isNotAssessment;

View File

@@ -57,6 +57,9 @@ public class BusinessAssayProjectDataRespVO {
@ExcelProperty("小数位")
private Integer decimalPosition;
@Schema(description = "有效数字位")
private Integer effectiveDigit;
@Schema(description = "是否不参与超差判定", requiredMode = Schema.RequiredMode.REQUIRED)
@ExcelProperty("是否不参与超差判定")
private Integer isNotAssessment;

View File

@@ -45,6 +45,9 @@ public class BusinessAssayProjectDataSaveReqVO {
@Schema(description = "小数位")
private Integer decimalPosition;
@Schema(description = "有效数字位")
private Integer effectiveDigit;
@Schema(description = "是否不参与超差判定", requiredMode = Schema.RequiredMode.REQUIRED)
@NotNull(message = "是否不参与超差判定不能为空")
private Integer isNotAssessment;

View File

@@ -37,6 +37,9 @@ public class BusinessQCManagementProjectDataPageReqVO extends PageParam {
@Schema(description = "小数位")
private Integer decimalPosition;
@Schema(description = "有效数字位")
private Integer effectiveDigit;
@Schema(description = "是否不参与超差判定")
private Integer isNotAssessment;

View File

@@ -37,6 +37,9 @@ public class BusinessQCManagementProjectDataReqVO {
@Schema(description = "小数位")
private Integer decimalPosition;
@Schema(description = "有效数字位")
private Integer effectiveDigit;
@Schema(description = "是否不参与超差判定")
private Integer isNotAssessment;

View File

@@ -48,6 +48,9 @@ public class BusinessQCManagementProjectDataRespVO {
@ExcelProperty("小数位")
private Integer decimalPosition;
@Schema(description = "有效数字位")
private Integer effectiveDigit;
@Schema(description = "是否不参与超差判定", requiredMode = Schema.RequiredMode.REQUIRED)
@ExcelProperty("是否不参与超差判定")
private Integer isNotAssessment;

View File

@@ -40,6 +40,9 @@ public class BusinessQCManagementProjectDataSaveReqVO {
@Schema(description = "小数位")
private Integer decimalPosition;
@Schema(description = "有效数字位")
private Integer effectiveDigit;
@Schema(description = "是否不参与超差判定", requiredMode = Schema.RequiredMode.REQUIRED)
@NotNull(message = "是否不参与超差判定不能为空")
private Integer isNotAssessment;

View File

@@ -46,6 +46,9 @@ public class BusinessSubParentSampleAssessmentProjectPageReqVO extends PageParam
@Schema(description = "小数位")
private Integer decimalPosition;
@Schema(description = "有效数字位")
private Integer effectiveDigit;
@Schema(description = "判定值")
private String assessmentValue;

Some files were not shown because too many files have changed in this diff Show More