package com.ruoyi.basic.pojo;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
import com.baomidou.mybatisplus.annotation.*;
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
import lombok.Data;
|
import com.ruoyi.framework.aspectj.lang.annotation.Excel;
|
|
/**
|
* 客户档案对象 customer
|
*
|
* @author ruoyi
|
* @date 2025-05-07
|
*/
|
@TableName(value = "customer")
|
@Data
|
public class Customer implements Serializable {
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* 序号
|
*/
|
@TableId(type = IdType.AUTO)
|
private Long id;
|
|
/**
|
* 客户名称
|
*/
|
@Excel(name = "客户名称")
|
private String customerName;
|
|
/**
|
* 纳税人识别号
|
*/
|
@Excel(name = "纳税人识别号")
|
private String taxpayerIdentificationNumber;
|
|
/**
|
* 公司地址
|
*/
|
@Excel(name = "公司地址")
|
private String companyAddress;
|
|
/**
|
* 公司电话
|
*/
|
@Excel(name = "公司电话")
|
private String companyPhone;
|
|
/**
|
* 联系人
|
*/
|
@Excel(name = "联系人")
|
private String contactPerson;
|
|
/**
|
* 联系电话
|
*/
|
@Excel(name = "联系电话")
|
private String contactPhone;
|
|
/**
|
* 维护人
|
*/
|
@Excel(name = "维护人")
|
private String maintainer;
|
|
/**
|
* 维护时间
|
*/
|
@JsonFormat(pattern = "yyyy-MM-dd")
|
@Excel(name = "维护时间" , width = 30, dateFormat = "yyyy-MM-dd")
|
private Date maintenanceTime;
|
|
@TableField(fill = FieldFill.INSERT)
|
private Long tenantId;
|
|
@TableField(exist = false)
|
private Long[] ids;
|
|
@TableField(exist = false)
|
private String addressPhone;
|
}
|