| | |
| | | public class ProductOrderDto extends ProductOrder { |
| | | |
| | | @ApiModelProperty(value = "销售合同号") |
| | | @Excel(name = "销售合同号") |
| | | // @Excel(name = "销售合同号") |
| | | private String salesContractNo; |
| | | |
| | | @ApiModelProperty(value = "项目名") |
| | | @Excel(name = "项目名") |
| | | // @Excel(name = "项目名") |
| | | private String projectName; |
| | | |
| | | @ApiModelProperty(value = "客户名称") |
| | | @Excel(name = "客户名称") |
| | | // @Excel(name = "客户名称") |
| | | private String customerName; |
| | | |
| | | @ApiModelProperty(value = "产品名称") |
| | |
| | | @ApiModelProperty(value = "工艺路线编号") |
| | | @Excel(name = "工艺路线编号") |
| | | private String processRouteCode; |
| | | |
| | | @ApiModelProperty(value = "完成状态") |
| | | @Excel(name = "完成状态") |
| | | private BigDecimal completionStatus; |
| | | |
| | | @ApiModelProperty(value = "BOM编号") |
| | | @Excel(name = "BOM编号") |
| | | private String bomNo; |
| | | } |