| | |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | import com.ruoyi.framework.aspectj.lang.annotation.Excel; |
| | | import org.checkerframework.checker.units.qual.A; |
| | | |
| | | /** |
| | | * 客户档案对象 customer |
| | |
| | | /** |
| | | * 跟进时间 |
| | | */ |
| | | @Excel(name = "跟进时间") |
| | | // @Excel(name = "跟进时间" , width = 30, dateFormat = "yyyy-MM-dd") |
| | | @TableField(exist = false) |
| | | private LocalDateTime followUpTime; |
| | | |
| | |
| | | @ApiModelProperty(value = "开户行号") |
| | | @Excel(name = "开户行号") |
| | | private String bankCode; |
| | | |
| | | @ApiModelProperty(value = "法人") |
| | | @Excel(name = "法人") |
| | | @TableField(value = "corporation") |
| | | private String corporation; |
| | | |
| | | @ApiModelProperty(value = "传真") |
| | | @Excel(name = "传真") |
| | | @TableField(value = "fax") |
| | | private String fax; |
| | | |
| | | @ApiModelProperty(value = "开户行") |
| | | @Excel(name = "开户行") |
| | | @TableField(value = "bank_name") |
| | | private String bankName; |
| | | |
| | | @ApiModelProperty(value = "代理") |
| | | @Excel(name = "代理") |
| | | @TableField(value = "agent") |
| | | private String agent; |
| | | @ApiModelProperty(value = "创建用户") |
| | | @TableField(fill = FieldFill.INSERT) |
| | | private Integer createUser; |
| | | |
| | | @TableField(fill = FieldFill.INSERT) |
| | | private Long deptId; |
| | | |
| | | @ApiModelProperty(value = "使用用户") |
| | | private Long usageUser; |
| | | @ApiModelProperty(value = "使用状态") |
| | | private Long usageStatus; |
| | | |
| | | } |