| ¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.ruoyi.home.dto; |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import io.swagger.v3.oas.annotations.media.Schema; |
| | | import lombok.Data; |
| | | import org.springframework.format.annotation.DateTimeFormat; |
| | | |
| | | import java.math.BigDecimal; |
| | | import java.time.LocalDate; |
| | | |
| | | @Data |
| | | public class ProductionProgressOrderDto { |
| | | |
| | | @Schema(description = "ç产订åå·") |
| | | private String npsNo; |
| | | |
| | | @Schema(description = "éå®ååå·") |
| | | private String salesContractNo; |
| | | |
| | | @Schema(description = "项ç®åç§°") |
| | | private String projectName; |
| | | |
| | | @Schema(description = "客æ·åç§°") |
| | | private String customerName; |
| | | |
| | | @Schema(description = "产ååç§°") |
| | | private String productCategory; |
| | | |
| | | @Schema(description = "è§æ ¼åå·") |
| | | private String specificationModel; |
| | | |
| | | @Schema(description = "å·¥èºè·¯çº¿ç¼å·") |
| | | private String processRouteCode; |
| | | |
| | | @Schema(description = "éæ±æ°é") |
| | | private BigDecimal quantity; |
| | | |
| | | @Schema(description = "宿æ°é") |
| | | private BigDecimal completeQuantity; |
| | | |
| | | @Schema(description = "宿è¿åº¦") |
| | | private BigDecimal completionStatus; |
| | | |
| | | @Schema(description = "BOMç¼å·") |
| | | private String bomNo; |
| | | |
| | | @Schema(description = "交æåå·®") |
| | | private Integer deliveryDaysDiff; |
| | | |
| | | @Schema(description = "交æ") |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd") |
| | | private LocalDate deliveryDate; |
| | | |
| | | @Schema(description = "æ¯å¦åè´§") |
| | | private Boolean isFh; |
| | | } |