| | |
| | | private BigDecimal unqualifiedQuantity; |
| | | |
| | | /** |
| | | * 是否抽检(0:否;1:是) |
| | | */ |
| | | @Excel(name = "是否抽检", readConverterExp = "0=否,1=是") |
| | | @TableField("is_sampling") |
| | | private Integer isSampling; |
| | | |
| | | /** |
| | | * 抽检数量 |
| | | */ |
| | | @Excel(name = "抽检数量") |
| | | @TableField("sampling_quantity") |
| | | private BigDecimal samplingQuantity; |
| | | |
| | | /** |
| | | * 检测单位 |
| | | */ |
| | | @Excel(name = "检测单位") |
| | |
| | | @Schema(description = "关联检测标准主表id") |
| | | private Long testStandardId; |
| | | |
| | | /** |
| | | * 合格率 |
| | | */ |
| | | @TableField(exist = false) |
| | | @Excel(name = "合格率(%)") |
| | | private BigDecimal passRate; |
| | | |
| | | |
| | | @TableField(fill = FieldFill.INSERT) |
| | | private Long deptId; |