| | |
| | | private Long id; |
| | | |
| | | @Schema(description = "产品规格id") |
| | | private Integer productModelId; |
| | | private Long productModelId; |
| | | |
| | | @Schema(description = "数量") |
| | | private BigDecimal quantity; |
| | |
| | | @Schema(description = "部门ID") |
| | | @TableField(fill = FieldFill.INSERT) |
| | | private Long deptId; |
| | | |
| | | @Schema(description = "工序名称") |
| | | private String operationName; |
| | | |
| | | @Schema(description = "工序id") |
| | | private Long technologyOperationId; |
| | | |
| | | @Schema(description = "需求数量") |
| | | private BigDecimal demandedQuantity; |
| | | |
| | | @Schema(description = "是否bom领料") |
| | | @TableField("is_bom") |
| | | private Boolean bom; |
| | | } |