| | |
| | | package com.ruoyi.basic.pojo; |
| | | |
| | | import java.io.Serializable; |
| | | import java.time.LocalDate; |
| | | import java.time.LocalDateTime; |
| | | import java.util.Date; |
| | | |
| | |
| | | /** |
| | | * 跟进程度 |
| | | */ |
| | | @Excel(name = "跟进程度") |
| | | // @Excel(name = "跟进程度") |
| | | @TableField(exist = false) |
| | | private String followUpLevel; |
| | | |
| | | /** |
| | | * 跟进时间 |
| | | */ |
| | | @Excel(name = "跟进时间") |
| | | // @Excel(name = "跟进时间" , width = 30, dateFormat = "yyyy-MM-dd") |
| | | @TableField(exist = false) |
| | | private LocalDateTime followUpTime; |
| | | private Date followUpTime; |
| | | |
| | | @Excel(name = "客户分类") |
| | | private String customerType; |
| | |
| | | /** |
| | | * 联系电话 |
| | | */ |
| | | @Excel(name = "联系电话") |
| | | @Excel(name = "联系电话", cellType = Excel.ColumnType.STRING) |
| | | private String contactPhone; |
| | | |
| | | /** |
| | |
| | | * 维护时间 |
| | | */ |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | @Excel(name = "维护时间" , width = 30, dateFormat = "yyyy-MM-dd") |
| | | @Excel(name = "维护时间", width = 30, dateFormat = "yyyy-MM-dd") |
| | | private Date maintenanceTime; |
| | | |
| | | @TableField(fill = FieldFill.INSERT) |
| | |
| | | @ApiModelProperty(value = "开户行号") |
| | | @Excel(name = "开户行号") |
| | | private String bankCode; |
| | | |
| | | @ApiModelProperty("地区") |
| | | @Excel(name = "地区") |
| | | private String regions; |
| | | } |