package com.ruoyi.basic.pojo; import com.baomidou.mybatisplus.annotation.FieldFill; import com.baomidou.mybatisplus.annotation.IdType; import com.baomidou.mybatisplus.annotation.TableField; import com.baomidou.mybatisplus.annotation.TableId; import com.baomidou.mybatisplus.annotation.TableName; import java.io.Serializable; import java.time.LocalDate; import java.util.Date; import com.fasterxml.jackson.annotation.JsonFormat; import com.ruoyi.framework.aspectj.lang.annotation.Excel; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import lombok.Getter; import lombok.Setter; /** *

* 客户档案 *

* * @author 芯导软件(江苏)有限公司 * @since 2026-04-17 10:39:09 */ @Getter @Setter @TableName("customer_private") @ApiModel(value = "CustomerPrivate对象", description = "客户档案") public class CustomerPrivate implements Serializable { private static final long serialVersionUID = 1L; @TableId(value = "id", type = IdType.AUTO) private Long id; @ApiModelProperty("客户名称") @Excel(name = "客户名称") private String customerName; @ApiModelProperty("纳税人识别号") @Excel(name = "纳税人识别号") private String taxpayerIdentificationNumber; @ApiModelProperty("公司地址") @Excel(name = "公司地址") private String companyAddress; @ApiModelProperty("公司电话") @Excel(name = "公司电话") private String companyPhone; @ApiModelProperty("联系人") @Excel(name = "联系人") private String contactPerson; @ApiModelProperty("联系电话") @Excel(name = "联系电话", cellType = Excel.ColumnType.STRING) private String contactPhone; @ApiModelProperty("维护人") @Excel(name = "维护人") private String maintainer; @ApiModelProperty("维护时间") @JsonFormat(pattern = "yyyy-MM-dd") @Excel(name = "维护时间", width = 30, dateFormat = "yyyy-MM-dd") private Date maintenanceTime; @ApiModelProperty("租户ID") @TableField(fill = FieldFill.INSERT) private Long tenantId; @ApiModelProperty("银行基本户") @Excel(name = "银行基本户") private String basicBankAccount; @ApiModelProperty("银行账号") @Excel(name = "银行账号") private String bankAccount; @ApiModelProperty("开户行号") @Excel(name = "开户行号") private String bankCode; @ApiModelProperty("客户分类:零售客户,进销商客户") @Excel(name = "客户分类") private String customerType; @ApiModelProperty("创建人ID") @TableField(fill = FieldFill.INSERT) private Long createUser; @ApiModelProperty("部门ID") @TableField(fill = FieldFill.INSERT) private Long deptId; @ApiModelProperty("跟进程度") @TableField(exist = false) private String followUpLevel; @ApiModelProperty("跟进时间") @TableField(exist = false) private Date followUpTime; @TableField(exist = false) private Long[] ids; @TableField(exist = false) private String addressPhone; }