| ¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.ruoyi.production.bean.dto; |
| | | |
| | | import com.ruoyi.framework.aspectj.lang.annotation.Excel; |
| | | import io.swagger.v3.oas.annotations.media.Schema; |
| | | import lombok.Data; |
| | | |
| | | import java.math.BigDecimal; |
| | | |
| | | @Data |
| | | public class BomImportDto { |
| | | @Schema(description = "ç¶äº§ååç§°") |
| | | @Excel(name = "ç¶äº§ååç§°") |
| | | private String parentName; |
| | | |
| | | @Schema(description = "ç¶äº§åè§æ ¼") |
| | | @Excel(name = "ç¶äº§åè§æ ¼") |
| | | private String parentSpec; |
| | | |
| | | @Schema(description = "å产ååç§°") |
| | | @Excel(name = "å产ååç§°") |
| | | private String childName; |
| | | |
| | | @Schema(description = "å产åè§æ ¼") |
| | | @Excel(name = "å产åè§æ ¼") |
| | | private String childSpec; |
| | | |
| | | @Schema(description = "åä½ç¨é") |
| | | @Excel(name = "åä½ç¨é") |
| | | private BigDecimal unitQty; |
| | | |
| | | @Schema(description = "å·¥åº") |
| | | @Excel(name = "å·¥åº") |
| | | private String process; |
| | | |
| | | @Schema(description = "夿³¨") |
| | | @Excel(name = "夿³¨") |
| | | private String remark; |
| | | } |