kimi
2020-03-13 8033eea1502d4cb0a91aa4b86c848ccb00ba8dc0
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
86
package com.highdatas.mdm.entity;
 
import com.baomidou.mybatisplus.activerecord.Model;
import com.baomidou.mybatisplus.annotations.TableName;
import java.io.Serializable;
 
/**
 * <p>
 * 
 * </p>
 *
 * @author kimi
 * @since 2019-12-16
 */
@TableName("customer")
public class Customer extends Model<Customer> {
 
    private static final long serialVersionUID = 1L;
 
    private String id;
 
    private String code;
 
    private String name;
 
    private String channelcode;
 
    private String channelname;
 
    public String getId() {
        return id;
    }
 
    public Customer setId(String id) {
        this.id = id;
        return this;
    }
    public String getCode() {
        return code;
    }
 
    public Customer setCode(String code) {
        this.code = code;
        return this;
    }
    public String getName() {
        return name;
    }
 
    public Customer setName(String name) {
        this.name = name;
        return this;
    }
    public String getChannelcode() {
        return channelcode;
    }
 
    public Customer setChannelcode(String channelcode) {
        this.channelcode = channelcode;
        return this;
    }
    public String getChannelname() {
        return channelname;
    }
 
    public Customer setChannelname(String channelname) {
        this.channelname = channelname;
        return this;
    }
 
    @Override
    protected Serializable pkVal() {
        return this.id;
    }
 
    @Override
    public String toString() {
        return "Customer{" +
        "id=" + id +
        ", code=" + code +
        ", name=" + name +
        ", channelcode=" + channelcode +
        ", channelname=" + channelname +
        "}";
    }
}