ModelConfig.java 5.44 KB
Newer Older
1
package pwc.taxtech.atms.entity;
2 3 4 5 6 7 8

import java.io.Serializable;
import java.util.Date;

/**
 *
 * This class was generated by MyBatis Generator.
gary's avatar
gary committed
9
 * This class corresponds to the database table model_config
10 11 12
 *
 * @mbg.generated do_not_delete_during_merge
 */
gary's avatar
gary committed
13
public class ModelConfig extends BaseEntity implements Serializable {
14 15 16
    /**
     *
     * This field was generated by MyBatis Generator.
gary's avatar
gary committed
17
     * This field corresponds to the database column model_config.id
18 19 20
     *
     * @mbg.generated
     */
neo's avatar
neo committed
21
    private String id;
22 23 24 25

    /**
     *
     * This field was generated by MyBatis Generator.
gary's avatar
gary committed
26
     * This field corresponds to the database column model_config.category_id
27 28 29
     *
     * @mbg.generated
     */
neo's avatar
neo committed
30
    private String categoryId;
31 32 33 34

    /**
     *
     * This field was generated by MyBatis Generator.
gary's avatar
gary committed
35
     * This field corresponds to the database column model_config.model_id
36 37 38
     *
     * @mbg.generated
     */
neo's avatar
neo committed
39
    private String modelId;
40 41 42 43

    /**
     *
     * This field was generated by MyBatis Generator.
gary's avatar
gary committed
44
     * This field corresponds to the database column model_config.create_time
45 46 47 48 49 50 51 52
     *
     * @mbg.generated
     */
    private Date createTime;

    /**
     *
     * This field was generated by MyBatis Generator.
gary's avatar
gary committed
53
     * This field corresponds to the database column model_config.update_time
54 55 56 57 58 59 60
     *
     * @mbg.generated
     */
    private Date updateTime;

    /**
     * This field was generated by MyBatis Generator.
gary's avatar
gary committed
61
     * This field corresponds to the database table model_config
62 63 64 65 66 67 68
     *
     * @mbg.generated
     */
    private static final long serialVersionUID = 1L;

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
69
     * This method returns the value of the database column model_config.id
70
     *
gary's avatar
gary committed
71
     * @return the value of model_config.id
72 73 74
     *
     * @mbg.generated
     */
neo's avatar
neo committed
75 76
    public String getId() {
        return id;
77 78 79 80
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
81
     * This method sets the value of the database column model_config.id
82
     *
gary's avatar
gary committed
83
     * @param id the value for model_config.id
84 85 86
     *
     * @mbg.generated
     */
neo's avatar
neo committed
87 88
    public void setId(String id) {
        this.id = id == null ? null : id.trim();
89 90 91 92
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
93
     * This method returns the value of the database column model_config.category_id
94
     *
gary's avatar
gary committed
95
     * @return the value of model_config.category_id
96 97 98
     *
     * @mbg.generated
     */
neo's avatar
neo committed
99 100
    public String getCategoryId() {
        return categoryId;
101 102 103 104
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
105
     * This method sets the value of the database column model_config.category_id
106
     *
gary's avatar
gary committed
107
     * @param categoryId the value for model_config.category_id
108 109 110
     *
     * @mbg.generated
     */
neo's avatar
neo committed
111 112
    public void setCategoryId(String categoryId) {
        this.categoryId = categoryId == null ? null : categoryId.trim();
113 114 115 116
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
117
     * This method returns the value of the database column model_config.model_id
118
     *
gary's avatar
gary committed
119
     * @return the value of model_config.model_id
120 121 122
     *
     * @mbg.generated
     */
neo's avatar
neo committed
123 124
    public String getModelId() {
        return modelId;
125 126 127 128
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
129
     * This method sets the value of the database column model_config.model_id
130
     *
gary's avatar
gary committed
131
     * @param modelId the value for model_config.model_id
132 133 134
     *
     * @mbg.generated
     */
neo's avatar
neo committed
135 136
    public void setModelId(String modelId) {
        this.modelId = modelId == null ? null : modelId.trim();
137 138 139 140
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
141
     * This method returns the value of the database column model_config.create_time
142
     *
gary's avatar
gary committed
143
     * @return the value of model_config.create_time
144 145 146 147 148 149 150 151 152
     *
     * @mbg.generated
     */
    public Date getCreateTime() {
        return createTime;
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
153
     * This method sets the value of the database column model_config.create_time
154
     *
gary's avatar
gary committed
155
     * @param createTime the value for model_config.create_time
156 157 158 159 160 161 162 163 164
     *
     * @mbg.generated
     */
    public void setCreateTime(Date createTime) {
        this.createTime = createTime;
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
165
     * This method returns the value of the database column model_config.update_time
166
     *
gary's avatar
gary committed
167
     * @return the value of model_config.update_time
168 169 170 171 172 173 174 175 176
     *
     * @mbg.generated
     */
    public Date getUpdateTime() {
        return updateTime;
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
177
     * This method sets the value of the database column model_config.update_time
178
     *
gary's avatar
gary committed
179
     * @param updateTime the value for model_config.update_time
180 181 182 183 184 185 186 187 188
     *
     * @mbg.generated
     */
    public void setUpdateTime(Date updateTime) {
        this.updateTime = updateTime;
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
189
     * This method corresponds to the database table model_config
190 191 192 193 194 195 196 197 198
     *
     * @mbg.generated
     */
    @Override
    public String toString() {
        StringBuilder sb = new StringBuilder();
        sb.append(getClass().getSimpleName());
        sb.append(" [");
        sb.append("Hash = ").append(hashCode());
neo's avatar
neo committed
199 200 201
        sb.append(", id=").append(id);
        sb.append(", categoryId=").append(categoryId);
        sb.append(", modelId=").append(modelId);
202 203 204 205 206 207
        sb.append(", createTime=").append(createTime);
        sb.append(", updateTime=").append(updateTime);
        sb.append("]");
        return sb.toString();
    }
}