| ¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.ruoyi.production.bean.dto; |
| | | |
| | | import io.swagger.v3.oas.annotations.media.Schema; |
| | | import lombok.Data; |
| | | |
| | | import java.math.BigDecimal; |
| | | import java.time.LocalDateTime; |
| | | |
| | | @Data |
| | | public class ProductionProductOutputDto { |
| | | @Schema(description = "主é®ID") |
| | | private Long id; |
| | | @Schema(description = "产å主表ID") |
| | | private Long productMainId; |
| | | @Schema(description = "ç产产å主表ID") |
| | | private Long productionProductMainId; |
| | | @Schema(description = "产ååå·ID") |
| | | private Long productModelId; |
| | | @Schema(description = "æ°é") |
| | | private BigDecimal quantity; |
| | | @Schema(description = "æ¥åºæ°é") |
| | | private BigDecimal scrapQty; |
| | | @Schema(description = "å建æ¶é´") |
| | | private LocalDateTime createTime; |
| | | @Schema(description = "æ´æ°æ¶é´") |
| | | private LocalDateTime updateTime; |
| | | @Schema(description = "ç§æ·ID") |
| | | private Long tenantId; |
| | | @Schema(description = "å建人") |
| | | private Integer createUser; |
| | | @Schema(description = "æ´æ°äºº") |
| | | private Integer updateUser; |
| | | @Schema(description = "é¨é¨ID") |
| | | private Long deptId; |
| | | |
| | | @Schema(description = "产åç¼å·") |
| | | private String productNo; |
| | | @Schema(description = "è§æ ¼åå·") |
| | | private String model; |
| | | } |