| | |
| | | package com.ruoyi.production.dto; |
| | | |
| | | import com.alibaba.excel.annotation.ExcelIgnoreUnannotated; |
| | | import com.ruoyi.framework.aspectj.lang.annotation.Excel; |
| | | import com.ruoyi.production.pojo.ProductOrder; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | |
| | | import java.math.BigDecimal; |
| | | |
| | | @Data |
| | | @ExcelIgnoreUnannotated |
| | | public class ProductOrderDto extends ProductOrder { |
| | | |
| | | @ApiModelProperty(value = "销售合同号") |
| | | @Excel(name = "销售合同号") |
| | | private String salesContractNo; |
| | | |
| | | @ApiModelProperty(value = "项目名") |
| | | @Excel(name = "项目名") |
| | | private String projectName; |
| | | |
| | | @ApiModelProperty(value = "客户名") |
| | | @ApiModelProperty(value = "客户名称") |
| | | @Excel(name = "客户名称") |
| | | private String customerName; |
| | | |
| | | @ApiModelProperty(value = "产品名称") |
| | | @Excel(name = "产品名称") |
| | | private String productCategory; |
| | | |
| | | @ApiModelProperty(value = "规格") |
| | | @Excel(name = "规格") |
| | | private String specificationModel; |
| | | @ApiModelProperty(value = "计划数量") |
| | | private Integer planQuantity; |
| | | @ApiModelProperty(value = "数量") |
| | | private Integer Quantity; |
| | | @ApiModelProperty(value = "工单号") |
| | | private String workOrderNo; |
| | | @ApiModelProperty(value = "是否报工") |
| | | private Integer reportWork; |
| | | @ApiModelProperty(value = "工单状态") |
| | | private Integer status; |
| | | @ApiModelProperty(value = "订单完成度") |
| | | private BigDecimal completionStatus; |
| | | |
| | | @ApiModelProperty(value = "工艺路线编号") |
| | | @Excel(name = "工艺路线编号") |
| | | private String processRouteCode; |
| | | } |