| | |
| | | @TableId(type = IdType.AUTO) |
| | | private Long id; |
| | | |
| | | @Schema(description = "报工id") |
| | | private Long productMainId; |
| | | |
| | | @Schema(description = "生产报工主表id") |
| | | private Long productionProductMainId; |
| | | |
| | |
| | | |
| | | @Schema(description = "报废数量") |
| | | private BigDecimal scrapQty; |
| | | |
| | | @Schema(description = "轻微返工数量") |
| | | @TableField("rework_minor_qty") |
| | | private BigDecimal reworkMinorQty; |
| | | |
| | | @Schema(description = "严重返工数量") |
| | | @TableField("rework_major_qty") |
| | | private BigDecimal reworkMajorQty; |
| | | @Schema(description = "创建用户") |
| | | @TableField(fill = FieldFill.INSERT) |
| | | private Integer createUser; |