字段修改
This commit is contained in:
@@ -47,7 +47,7 @@ public class BusinessQCDataController implements BusinessControllerMarker {
|
|||||||
return success(businessQCDataService.createBusinessQCData(createReqVO));
|
return success(businessQCDataService.createBusinessQCData(createReqVO));
|
||||||
}
|
}
|
||||||
|
|
||||||
@PutMapping("/update")
|
@PostMapping("/update")
|
||||||
@Operation(summary = "更新质控样业务")
|
@Operation(summary = "更新质控样业务")
|
||||||
//@PreAuthorize("@ss.hasPermission('qms:business-QC-data:update')")
|
//@PreAuthorize("@ss.hasPermission('qms:business-QC-data:update')")
|
||||||
public CommonResult<Boolean> updateBusinessQCData(@Valid @RequestBody BusinessQCDataSaveReqVO updateReqVO) {
|
public CommonResult<Boolean> updateBusinessQCData(@Valid @RequestBody BusinessQCDataSaveReqVO updateReqVO) {
|
||||||
|
|||||||
@@ -40,6 +40,9 @@ public class BusinessAssayProjectDataPageReqVO extends PageParam {
|
|||||||
@Schema(description = "是否不参与超差判定")
|
@Schema(description = "是否不参与超差判定")
|
||||||
private Integer isNotAssessment;
|
private Integer isNotAssessment;
|
||||||
|
|
||||||
|
@Schema(description = "方法检出下限值")
|
||||||
|
private String minimumLimitValue;
|
||||||
|
|
||||||
@Schema(description = "是否启用")
|
@Schema(description = "是否启用")
|
||||||
private Integer isEnabled;
|
private Integer isEnabled;
|
||||||
|
|
||||||
|
|||||||
@@ -46,6 +46,9 @@ public class BusinessAssayProjectDataReqVO {
|
|||||||
@Schema(description = "是否不参与超差判定")
|
@Schema(description = "是否不参与超差判定")
|
||||||
private Integer isNotAssessment;
|
private Integer isNotAssessment;
|
||||||
|
|
||||||
|
@Schema(description = "方法检出下限值")
|
||||||
|
private String minimumLimitValue;
|
||||||
|
|
||||||
@Schema(description = "是否启用")
|
@Schema(description = "是否启用")
|
||||||
private Integer isEnabled;
|
private Integer isEnabled;
|
||||||
|
|
||||||
|
|||||||
@@ -50,6 +50,9 @@ public class BusinessAssayProjectDataRespVO {
|
|||||||
@ExcelProperty("是否不参与超差判定")
|
@ExcelProperty("是否不参与超差判定")
|
||||||
private Integer isNotAssessment;
|
private Integer isNotAssessment;
|
||||||
|
|
||||||
|
@Schema(description = "方法检出下限值")
|
||||||
|
private String minimumLimitValue;
|
||||||
|
|
||||||
@Schema(description = "是否启用", requiredMode = Schema.RequiredMode.REQUIRED)
|
@Schema(description = "是否启用", requiredMode = Schema.RequiredMode.REQUIRED)
|
||||||
@ExcelProperty("是否启用")
|
@ExcelProperty("是否启用")
|
||||||
private Integer isEnabled;
|
private Integer isEnabled;
|
||||||
|
|||||||
@@ -38,6 +38,9 @@ public class BusinessAssayProjectDataSaveReqVO {
|
|||||||
@NotNull(message = "是否不参与超差判定不能为空")
|
@NotNull(message = "是否不参与超差判定不能为空")
|
||||||
private Integer isNotAssessment;
|
private Integer isNotAssessment;
|
||||||
|
|
||||||
|
@Schema(description = "方法检出下限值")
|
||||||
|
private String minimumLimitValue;
|
||||||
|
|
||||||
@Schema(description = "是否启用", requiredMode = Schema.RequiredMode.REQUIRED)
|
@Schema(description = "是否启用", requiredMode = Schema.RequiredMode.REQUIRED)
|
||||||
@NotNull(message = "是否启用不能为空")
|
@NotNull(message = "是否启用不能为空")
|
||||||
private Integer isEnabled;
|
private Integer isEnabled;
|
||||||
|
|||||||
@@ -49,6 +49,9 @@ public class BusinessSubParentSampleAssessmentPageReqVO extends PageParam {
|
|||||||
@Schema(description = "判定状态,in_progress-进行中 normal-正常,exceeds_tolerance-超差", example = "2")
|
@Schema(description = "判定状态,in_progress-进行中 normal-正常,exceeds_tolerance-超差", example = "2")
|
||||||
private String assessmentStatus;
|
private String assessmentStatus;
|
||||||
|
|
||||||
|
@Schema(description = "方法检出下限值")
|
||||||
|
private String minimumLimitValue;
|
||||||
|
|
||||||
@Schema(description = "是否已上报")
|
@Schema(description = "是否已上报")
|
||||||
private Integer isReported;
|
private Integer isReported;
|
||||||
|
|
||||||
|
|||||||
@@ -60,6 +60,9 @@ public class BusinessSubParentSampleAssessmentRespVO {
|
|||||||
@ExcelProperty("判定状态,in_progress-进行中 normal-正常,exceeds_tolerance-超差")
|
@ExcelProperty("判定状态,in_progress-进行中 normal-正常,exceeds_tolerance-超差")
|
||||||
private String assessmentStatus;
|
private String assessmentStatus;
|
||||||
|
|
||||||
|
@Schema(description = "方法检出下限值")
|
||||||
|
private String minimumLimitValue;
|
||||||
|
|
||||||
@Schema(description = "是否已上报", requiredMode = Schema.RequiredMode.REQUIRED)
|
@Schema(description = "是否已上报", requiredMode = Schema.RequiredMode.REQUIRED)
|
||||||
@ExcelProperty("是否已上报")
|
@ExcelProperty("是否已上报")
|
||||||
private Integer isReported;
|
private Integer isReported;
|
||||||
|
|||||||
@@ -56,6 +56,9 @@ public class BusinessSubParentSampleAssessmentSaveReqVO {
|
|||||||
@NotEmpty(message = "判定状态,in_progress-进行中 normal-正常,exceeds_tolerance-超差不能为空")
|
@NotEmpty(message = "判定状态,in_progress-进行中 normal-正常,exceeds_tolerance-超差不能为空")
|
||||||
private String assessmentStatus;
|
private String assessmentStatus;
|
||||||
|
|
||||||
|
@Schema(description = "方法检出下限值")
|
||||||
|
private String minimumLimitValue;
|
||||||
|
|
||||||
@Schema(description = "是否已上报", requiredMode = Schema.RequiredMode.REQUIRED)
|
@Schema(description = "是否已上报", requiredMode = Schema.RequiredMode.REQUIRED)
|
||||||
@NotNull(message = "是否已上报不能为空")
|
@NotNull(message = "是否已上报不能为空")
|
||||||
private Integer isReported;
|
private Integer isReported;
|
||||||
|
|||||||
@@ -52,6 +52,9 @@ public class BusinessSubSampleAssessmentPageReqVO extends PageParam {
|
|||||||
@Schema(description = "判定状态,in_progress-进行中 normal-正常,exceeds_tolerance-超差", example = "1")
|
@Schema(description = "判定状态,in_progress-进行中 normal-正常,exceeds_tolerance-超差", example = "1")
|
||||||
private String assessmentStatus;
|
private String assessmentStatus;
|
||||||
|
|
||||||
|
@Schema(description = "方法检出下限值")
|
||||||
|
private String minimumLimitValue;
|
||||||
|
|
||||||
@Schema(description = "是否已上报")
|
@Schema(description = "是否已上报")
|
||||||
private Integer isReported;
|
private Integer isReported;
|
||||||
|
|
||||||
|
|||||||
@@ -65,6 +65,9 @@ public class BusinessSubSampleAssessmentRespVO {
|
|||||||
@ExcelProperty("判定状态,in_progress-进行中 normal-正常,exceeds_tolerance-超差")
|
@ExcelProperty("判定状态,in_progress-进行中 normal-正常,exceeds_tolerance-超差")
|
||||||
private String assessmentStatus;
|
private String assessmentStatus;
|
||||||
|
|
||||||
|
@Schema(description = "方法检出下限值")
|
||||||
|
private String minimumLimitValue;
|
||||||
|
|
||||||
@Schema(description = "是否已上报", requiredMode = Schema.RequiredMode.REQUIRED)
|
@Schema(description = "是否已上报", requiredMode = Schema.RequiredMode.REQUIRED)
|
||||||
@ExcelProperty("是否已上报")
|
@ExcelProperty("是否已上报")
|
||||||
private Integer isReported;
|
private Integer isReported;
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user