| | |
| | | @ExcelIgnoreUnannotated |
| | | public class ProductOrderDto extends ProductOrder { |
| | | |
| | | @ApiModelProperty(value = "销售合同号") |
| | | @Excel(name = "销售合同号") |
| | | private String salesContractNo; |
| | | |
| | | @ApiModelProperty(value = "项目名") |
| | | @Excel(name = "项目名") |
| | | private String projectName; |
| | | |
| | | @ApiModelProperty(value = "客户名称") |
| | | @Excel(name = "客户名称") |
| | | private String customerName; |
| | | |
| | | @ApiModelProperty(value = "产品名称") |
| | | @Excel(name = "产品名称") |
| | | private String productCategory; |
| | | private String productName; |
| | | |
| | | @ApiModelProperty(value = "规格") |
| | | @Excel(name = "规格") |
| | | private String specificationModel; |
| | | private String model; |
| | | |
| | | @ApiModelProperty(value = "产品类型") |
| | | @Excel(name = "产品类型") |
| | | private String strength; |
| | | |
| | | @ApiModelProperty(value = "工艺路线描述") |
| | | @Excel(name = "工艺路线描述") |
| | | private String description; |
| | | |
| | | @ApiModelProperty(value = "工艺路线产品类型") |
| | | @Excel(name = "工艺路线产品类型") |
| | | private String dictLabel; |
| | | |
| | | @ApiModelProperty(value = "物料编码") |
| | | @Excel(name = "物料编码") |
| | | private String materialCode; |
| | | |
| | | @ApiModelProperty(value = "工艺路线编号") |
| | | @Excel(name = "工艺路线编号") |
| | | private String processRouteCode; |
| | | |
| | | @ApiModelProperty(value = "完成状态") |
| | | @Excel(name = "完成状态") |
| | | @ApiModelProperty(value = "完成进度") |
| | | @Excel(name = "完成进度", suffix = "%") |
| | | private BigDecimal completionStatus; |
| | | |
| | | @ApiModelProperty(value = "BOM ID") |
| | | @Excel(name = "BOM ID") |
| | | private String bomId; |
| | | |
| | | @ApiModelProperty(value = "BOM编号") |
| | | @Excel(name = "BOM编号") |
| | |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd") |
| | | private LocalDate deliveryDate; |
| | | |
| | | //是否发货(台账页面颜色控制) |
| | | private Boolean isFh; |
| | | } |