| ¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.ruoyi.technology.pojo; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.*; |
| | | import io.swagger.v3.oas.annotations.media.Schema; |
| | | import lombok.Data; |
| | | |
| | | import java.io.Serializable; |
| | | import java.math.BigDecimal; |
| | | |
| | | /** |
| | | * <p> |
| | | * BOM产åç»æè¡¨ |
| | | * </p> |
| | | * |
| | | * @author è¯å¯¼è½¯ä»¶ï¼æ±èï¼æéå
¬å¸ |
| | | * @since 2026-04-20 10:06:17 |
| | | */ |
| | | @Data |
| | | @TableName("technology_bom_structure") |
| | | @Schema(name = "TechnologyStructure对象", description = "BOM产åç»æè¡¨") |
| | | public class TechnologyBomStructure 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 productModelId; |
| | | |
| | | @Schema(description = "å·¥åºid") |
| | | private Long operationId; |
| | | |
| | | @Schema(description = "åä½äº§åºéè¦æ°é") |
| | | private BigDecimal unitQuantity; |
| | | |
| | | @Schema(description = "éæ±æ°é") |
| | | private BigDecimal demandedQuantity; |
| | | |
| | | @Schema(description = "åä½") |
| | | private String unit; |
| | | |
| | | @Schema(description = "bomçid") |
| | | private Long bomId; |
| | | |
| | | @Schema(description = "å建人ID") |
| | | @TableField(fill = FieldFill.INSERT) |
| | | private Long createUser; |
| | | |
| | | @Schema(description = "é¨é¨ID") |
| | | @TableField(fill = FieldFill.INSERT) |
| | | private Long deptId; |
| | | } |