kimi
2020-05-27 c007f0ca1785db093d48f4846cda82fe8e955765
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
package com.highdatas.mdm.entity;
 
import com.baomidou.mybatisplus.activerecord.Model;
import com.baomidou.mybatisplus.annotations.TableField;
import com.baomidou.mybatisplus.annotations.TableName;
 
import java.io.Serializable;
import java.util.Date;
 
/**
 * <p>
 * 
 * </p>
 *
 * @author kimi
 * @since 2020-02-20
 */
@TableName("sys_assemble_commonparams")
public class SysAssembleCommonparams extends Model<SysAssembleCommonparams> {
 
    private static final long serialVersionUID = 1L;
    /*
     *主键
     * */
    private String id;
    /*
     *编码
     * */
    private String code;
    /*
     *名称
     * */
    private String name;
    /*
     *值
     * */
    private String val;
    /*
     *初始化sql
     * */
    @TableField("init_sql")
    private String initSql;
    /*
     *更新sql
     * */
    @TableField("update_sql")
    private String updateSql;
    /*
     *创建时间
     * */
    @TableField("create_time")
    private Date createTime;
    /*
     *更新时间
     * */
    @TableField("update_time")
    private Date updateTime;
 
    public String getId() {
        return id;
    }
 
    public SysAssembleCommonparams setId(String id) {
        this.id = id;
        return this;
    }
    public String getCode() {
        return code;
    }
 
    public SysAssembleCommonparams setCode(String code) {
        this.code = code;
        return this;
    }
    public String getName() {
        return name;
    }
 
    public SysAssembleCommonparams setName(String name) {
        this.name = name;
        return this;
    }
    public String getVal() {
        return val;
    }
 
    public SysAssembleCommonparams setVal(String val) {
        this.val = val;
        return this;
    }
    public String getInitSql() {
        return initSql;
    }
 
    public SysAssembleCommonparams setInitSql(String initSql) {
        this.initSql = initSql;
        return this;
    }
    public String getUpdateSql() {
        return updateSql;
    }
 
    public SysAssembleCommonparams setUpdateSql(String updateSql) {
        this.updateSql = updateSql;
        return this;
    }
    public Date getCreateTime() {
        return createTime;
    }
 
    public SysAssembleCommonparams setCreateTime(Date createTime) {
        this.createTime = createTime;
        return this;
    }
    public Date getUpdateTime() {
        return updateTime;
    }
 
    public SysAssembleCommonparams setUpdateTime(Date updateTime) {
        this.updateTime = updateTime;
        return this;
    }
 
    @Override
    protected Serializable pkVal() {
        return this.id;
    }
 
    @Override
    public String toString() {
        return "SysAssembleCommonparams{" +
        "id=" + id +
        ", code=" + code +
        ", name=" + name +
        ", val=" + val +
        ", initSql=" + initSql +
        ", updateSql=" + updateSql +
        ", createTime=" + createTime +
        ", updateTime=" + updateTime +
        "}";
    }
}