| | |
| | | @Schema(description = "入库比例(百分比),默认100") |
| | | private BigDecimal stockInRatio; |
| | | |
| | | @Schema(description = "检验规则: 0=全检, 1=抽检") |
| | | @Excel(name = "检验规则", readConverterExp = "0=全检,1=抽检") |
| | | private Integer inspectRule; |
| | | |
| | | @Schema(description = "抽检比例(百分比), 仅inspectRule=1时有效") |
| | | @Excel(name = "抽检比例(%)") |
| | | private BigDecimal sampleRatio; |
| | | |
| | | @Schema(description = "抽检数量, 仅inspectRule=1时有效") |
| | | private BigDecimal sampleQuantity; |
| | | |
| | | @Schema(description = "自动判断结果:合格/不合格/null(需手动判断)") |
| | | @Excel(name = "自动判断结果") |
| | | private String autoJudgeResult; |
| | | |
| | | @TableField(fill = FieldFill.INSERT) |
| | | private Long deptId; |
| | | } |