| | |
| | | private Long purchaseLedgerId; |
| | | |
| | | /** |
| | | * 销售台账id(出厂检验) |
| | | */ |
| | | private Long salesLedgerId; |
| | | |
| | | /** |
| | | * 报工id |
| | | */ |
| | | private Long productMainId; |
| | |
| | | @Schema(description = "关联检测标准主表id") |
| | | private Long testStandardId; |
| | | |
| | | /** |
| | | * 入库比例(百分比),质检入库时入库数量=合格数量*入库比例/100 |
| | | */ |
| | | @Excel(name = "入库比例(%)") |
| | | @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; |
| | | |
| | | @TableField(fill = FieldFill.INSERT) |
| | | private Long deptId; |