| | |
| | | @Schema(description = "指标标准ID") |
| | | private Long testStandardId; |
| | | |
| | | @Schema(description = "总数量") |
| | | private BigDecimal quantity; |
| | | |
| | | @Schema(description = "合格数量") |
| | | private BigDecimal qualifiedQuantity; |
| | | |
| | | @Schema(description = "不合格数量") |
| | | private BigDecimal unqualifiedQuantity; |
| | | |
| | | @Schema(description = "检测单位") |
| | | private String checkCompany; |
| | | |
| | |
| | | |
| | | @Schema(description = "检验参数列表") |
| | | private List<QualityInspectParam> paramList; |
| | | |
| | | @Schema(description = "抽检数量,用于抽检模式时填写实际抽检样本数量") |
| | | private BigDecimal sampleQuantity; |
| | | |
| | | @Schema(description = "合格数量(抽检样本中的合格数)") |
| | | private BigDecimal qualifiedQuantity; |
| | | |
| | | @Schema(description = "不合格数量(抽检样本中的不合格数)") |
| | | private BigDecimal unqualifiedQuantity; |
| | | } |