| ¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.ruoyi.production.bean.vo; |
| | | |
| | | import io.swagger.v3.oas.annotations.media.Schema; |
| | | import lombok.Data; |
| | | |
| | | import java.util.List; |
| | | |
| | | @Data |
| | | @Schema(name = "ProductionOrderGroupVo", description = "ç产订ååç»VO") |
| | | public class ProductionOrderGroupVo { |
| | | |
| | | @Schema(description = "ç产订åID") |
| | | private Long productionOrderId; |
| | | |
| | | @Schema(description = "ç产订åå·") |
| | | private String npsNo; |
| | | |
| | | @Schema(description = "产ååç§°") |
| | | private String productName; |
| | | |
| | | @Schema(description = "è§æ ¼åå·") |
| | | private String model; |
| | | |
| | | @Schema(description = "å·¥åºä¿¡æ¯å表") |
| | | private List<OperationInfo> operations; |
| | | |
| | | @Data |
| | | @Schema(name = "OperationInfo", description = "å·¥åºä¿¡æ¯") |
| | | public static class OperationInfo { |
| | | |
| | | @Schema(description = "ç产订åID") |
| | | private Long productionOrderId; |
| | | |
| | | @Schema(description = "å·¥åºID") |
| | | private Long operationId; |
| | | |
| | | @Schema(description = "å·¥åºåç§°") |
| | | private String operationName; |
| | | |
| | | @Schema(description = "ç±»å 0è®¡æ¶ 1计件") |
| | | private Integer type; |
| | | |
| | | @Schema(description = "æåºå·") |
| | | private Integer dragSort; |
| | | |
| | | @Schema(description = "æ¯å¦ç产") |
| | | private Boolean isProduction; |
| | | |
| | | @Schema(description = "æ¯å¦è´¨æ£å·¥åº") |
| | | private Boolean isQuality; |
| | | } |
| | | } |