| | |
| | | import com.baomidou.mybatisplus.annotation.*; |
| | | import io.swagger.v3.oas.annotations.media.Schema; |
| | | import lombok.Data; |
| | | import lombok.Getter; |
| | | import lombok.Setter; |
| | | |
| | | import java.io.Serializable; |
| | | import java.math.BigDecimal; |
| | |
| | | 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 = "补料总量") |
| | | private BigDecimal feedingQty; |
| | | |
| | | @Schema(description = "退料数量") |
| | | private BigDecimal returnQty; |
| | | |
| | | @Schema(description = "实际数量") |
| | | private BigDecimal actualQty; |
| | | |
| | | @Schema(description = "是否已退料") |
| | | @TableField("is_returned") |
| | | private Boolean returned; |
| | | |
| | | @Schema(description = "是否bom领料") |
| | | @TableField("is_bom") |
| | | private Boolean bom; |
| | | } |