| ¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.ruoyi.production.pojo; |
| | | |
| | | 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; |
| | | |
| | | /** |
| | | * <p> |
| | | * ç产订åBOM产åç»æ |
| | | * </p> |
| | | * |
| | | * @author è¯å¯¼è½¯ä»¶ï¼æ±èï¼æéå
¬å¸ |
| | | * @since 2026-04-21 03:55:52 |
| | | */ |
| | | @Data |
| | | @TableName("production_bom_structure") |
| | | @Schema(name = "ProductionBomStructure对象", description = "ç产订åBOM产åç»æ") |
| | | public class ProductionBomStructure implements Serializable { |
| | | |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | @Schema(description = "主é®ID") |
| | | @TableId(value = "id", type = IdType.AUTO) |
| | | private Long id; |
| | | |
| | | @Schema(description = "ç¶èç¹ID") |
| | | private Long parentId; |
| | | |
| | | @Schema(description = "ç产订åid") |
| | | private Long productionOrderId; |
| | | |
| | | @Schema(description = "产åè§æ ¼id") |
| | | private Long productModelId; |
| | | |
| | | @Schema(description = "å·¥åºid") |
| | | private Long technologyOperationId; |
| | | |
| | | @Schema(description = "ç产订åBOMid") |
| | | private Long productionOrderBomId; |
| | | |
| | | @Schema(description = "åä½äº§åºéè¦æ°é") |
| | | private BigDecimal unitQuantity; |
| | | |
| | | @Schema(description = "éæ±æ°é") |
| | | private BigDecimal demandedQuantity; |
| | | |
| | | @Schema(description = "åä½") |
| | | private String unit; |
| | | |
| | | @Schema(description = "å建人ID") |
| | | @TableField(fill = FieldFill.INSERT) |
| | | private Long createUser; |
| | | |
| | | @Schema(description = "é¨é¨ID") |
| | | @TableField(fill = FieldFill.INSERT) |
| | | private Long deptId; |
| | | } |