| | |
| | | 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; |
| | | |
| | | |
| | | @ApiModelProperty(value = "台账分类") |
| | | @Excel(name = "台账分类") |
| | | private Integer salesType; |
| | | } |