admin
2024-01-08 22f70cc8b2ba603e82bba058db320dced48f9470
提交 | 用户 | 时间
71e81e 1 package cn.stylefeng.guns.modular.bs.customInfo.entity;
2
3 import com.baomidou.mybatisplus.annotation.TableName;
4 import com.baomidou.mybatisplus.annotation.IdType;
5 import java.util.Date;
6 import com.baomidou.mybatisplus.annotation.TableId;
7 import com.baomidou.mybatisplus.annotation.FieldFill;
8 import com.baomidou.mybatisplus.annotation.TableField;
9 import java.io.Serializable;
10
11 /**
12  * <p>
13  * 客户信息
14  * </p>
15  *
16  * @author ruimin
17  * @since 2023-03-27
18  */
19 @TableName("bs_custom_info")
20 public class CustomInfo implements Serializable {
21
22     private static final long serialVersionUID=1L;
23
24     /**
25      * id
26      */
27       @TableId(value = "id", type = IdType.ID_WORKER)
28     private Long id;
29
30     /**
31      * 客户编号
32      */
33     @TableField("customer_code")
34     private String customerCode;
35
36     /**
37      * 客户名称
38      */
39     @TableField("customer_name")
40     private String customerName;
41
42     /**
43      * 客户类型
44      */
45     @TableField("customer_type")
46     private String customerType;
47
48     /**
49      * 联系方式
50      */
51     @TableField("contact")
52     private String contact;
53
54     /**
55      * 备注
56      */
57     @TableField("remarks")
58     private String remarks;
59
60     /**
61      * 创建时间
62      */
63       @TableField(value = "create_time", fill = FieldFill.INSERT)
64     private Date createTime;
65
66     /**
67      * 创建用户
68      */
69       @TableField(value = "create_user", fill = FieldFill.INSERT)
70     private String createUser;
71
72     /**
73      * 修改时间
74      */
75       @TableField(value = "update_time", fill = FieldFill.UPDATE)
76     private Date updateTime;
77
78     /**
79      * 修改用户
80      */
81       @TableField(value = "update_user", fill = FieldFill.UPDATE)
82     private String updateUser;
83
84
85     public Long getId() {
86         return id;
87     }
88
89     public void setId(Long id) {
90         this.id = id;
91     }
92
93     public String getCustomerCode() {
94         return customerCode;
95     }
96
97     public void setCustomerCode(String customerCode) {
98         this.customerCode = customerCode;
99     }
100
101     public String getCustomerName() {
102         return customerName;
103     }
104
105     public void setCustomerName(String customerName) {
106         this.customerName = customerName;
107     }
108
109     public String getCustomerType() {
110         return customerType;
111     }
112
113     public void setCustomerType(String customerType) {
114         this.customerType = customerType;
115     }
116
117     public String getContact() {
118         return contact;
119     }
120
121     public void setContact(String contact) {
122         this.contact = contact;
123     }
124
125     public String getRemarks() {
126         return remarks;
127     }
128
129     public void setRemarks(String remarks) {
130         this.remarks = remarks;
131     }
132
133     public Date getCreateTime() {
134         return createTime;
135     }
136
137     public void setCreateTime(Date createTime) {
138         this.createTime = createTime;
139     }
140
141     public String getCreateUser() {
142         return createUser;
143     }
144
145     public void setCreateUser(String createUser) {
146         this.createUser = createUser;
147     }
148
149     public Date getUpdateTime() {
150         return updateTime;
151     }
152
153     public void setUpdateTime(Date updateTime) {
154         this.updateTime = updateTime;
155     }
156
157     public String getUpdateUser() {
158         return updateUser;
159     }
160
161     public void setUpdateUser(String updateUser) {
162         this.updateUser = updateUser;
163     }
164
165     @Override
166     public String toString() {
167         return "CustomInfo{" +
168         "id=" + id +
169         ", customerCode=" + customerCode +
170         ", customerName=" + customerName +
171         ", customerType=" + customerType +
172         ", contact=" + contact +
173         ", remarks=" + remarks +
174         ", createTime=" + createTime +
175         ", createUser=" + createUser +
176         ", updateTime=" + updateTime +
177         ", updateUser=" + updateUser +
178         "}";
179     }
180 }