chenrui
2025-05-09 e9f2adb9ddc511c62e1628fbd527ba7cda8294d4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
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;
}