| ¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.ruoyi.production.bean.dto; |
| | | |
| | | import io.swagger.v3.oas.annotations.media.Schema; |
| | | import lombok.Data; |
| | | |
| | | import java.math.BigDecimal; |
| | | import java.util.List; |
| | | |
| | | @Data |
| | | public class ProductStructureDto { |
| | | @Schema(description = "主é®ID") |
| | | private Long id; |
| | | @Schema(description = "BOM主é®ID") |
| | | private Long bomId; |
| | | @Schema(description = "ç¶çº§ID") |
| | | private Long parentId; |
| | | @Schema(description = "产ååå·ID") |
| | | private Long productModelId; |
| | | @Schema(description = "åä½ç¨é") |
| | | private BigDecimal unitQuantity; |
| | | @Schema(description = "åä½") |
| | | private String unit; |
| | | @Schema(description = "å·¥åºID") |
| | | private Long processId; |
| | | @Schema(description = "å·¥åºåç§°") |
| | | private String processName; |
| | | @Schema(description = "产ååç§°") |
| | | private String productName; |
| | | @Schema(description = "è§æ ¼åå·") |
| | | private String model; |
| | | @Schema(description = "åèç¹") |
| | | private List<ProductStructureDto> children; |
| | | } |