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