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