懒羊羊
2023-11-14 8286c62256f23bc2367a6729c0f46f84215e380b
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
package cn.stylefeng.guns.modular.bs.customInfo.model.result;
 
import lombok.Data;
import java.util.Date;
import java.io.Serializable;
import java.math.BigDecimal;
 
/**
 * <p>
 * 客户信息
 * </p>
 *
 * @author ruimin
 * @since 2023-03-27
 */
@Data
public class CustomInfoResult implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
 
    /**
     * id
     */
    private Long id;
 
    /**
     * 客户编号
     */
    private String customerCode;
 
    /**
     * 客户名称
     */
    private String customerName;
 
    /**
     * 客户类型
     */
    private String customerType;
 
    /**
     * 联系方式
     */
    private String contact;
 
    /**
     * 备注
     */
    private String remarks;
 
    /**
     * 创建时间
     */
    private Date createTime;
 
    /**
     * 创建用户
     */
    private String createUser;
 
    /**
     * 修改时间
     */
    private Date updateTime;
 
    /**
     * 修改用户
     */
    private String updateUser;
 
}