| | |
| | | private String salesman; |
| | | @Excel(name = "客户名称") |
| | | private String customerName; |
| | | @Excel(name = "项目名称") |
| | | private String projectName; |
| | | @Excel(name = "录入人") |
| | | private String entryPerson; |
| | | @Excel(name = "备注") |
| | |
| | | @Excel(name = "签订日期", width = 30, dateFormat = "yyyy-MM-dd") |
| | | private Date executionDate; |
| | | |
| | | @Excel(name = "合同金额") |
| | | private BigDecimal contractAmount; |
| | | @ApiModelProperty(value = "付款方式") |
| | | @Excel(name = "付款方式") |
| | | private String paymentMethod; |
| | | |
| | | @Excel(name = "订单类型") |
| | | private String orderType; |
| | | |
| | | @Excel(name = "订单行") |
| | | private String orderLine; |
| | | |
| | | @Excel(name = "需求日期", width = 30, dateFormat = "yyyy-MM-dd") |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | private Date demandDate; |
| | | |
| | | @Excel(name = "交货日期", width = 30, dateFormat = "yyyy-MM-dd") |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | private Date deliveryDate; |
| | | |
| | | |
| | | } |