FormulaConfig.java 11.6 KB
Newer Older
1
package pwc.taxtech.atms.entity;
eddie.woo's avatar
eddie.woo committed
2 3 4 5 6 7

import java.io.Serializable;

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

    /**
     *
     * This field was generated by MyBatis Generator.
gary's avatar
gary committed
25
     * This field corresponds to the database column formula_config.formula_name
eddie.woo's avatar
eddie.woo committed
26 27 28 29 30 31 32 33
     *
     * @mbg.generated
     */
    private String formulaName;

    /**
     *
     * This field was generated by MyBatis Generator.
gary's avatar
gary committed
34
     * This field corresponds to the database column formula_config.description
eddie.woo's avatar
eddie.woo committed
35 36 37 38 39 40 41 42
     *
     * @mbg.generated
     */
    private String description;

    /**
     *
     * This field was generated by MyBatis Generator.
gary's avatar
gary committed
43
     * This field corresponds to the database column formula_config.calculate_status
eddie.woo's avatar
eddie.woo committed
44 45 46 47 48 49 50 51
     *
     * @mbg.generated
     */
    private Integer calculateStatus;

    /**
     *
     * This field was generated by MyBatis Generator.
gary's avatar
gary committed
52
     * This field corresponds to the database column formula_config.data_source_type
eddie.woo's avatar
eddie.woo committed
53 54 55 56 57 58 59 60
     *
     * @mbg.generated
     */
    private Integer dataSourceType;

    /**
     *
     * This field was generated by MyBatis Generator.
gary's avatar
gary committed
61
     * This field corresponds to the database column formula_config.data_source_name
eddie.woo's avatar
eddie.woo committed
62 63 64 65 66 67 68 69
     *
     * @mbg.generated
     */
    private String dataSourceName;

    /**
     *
     * This field was generated by MyBatis Generator.
gary's avatar
gary committed
70
     * This field corresponds to the database column formula_config.chinese_name
eddie.woo's avatar
eddie.woo committed
71 72 73 74 75 76 77 78
     *
     * @mbg.generated
     */
    private String chineseName;

    /**
     *
     * This field was generated by MyBatis Generator.
gary's avatar
gary committed
79
     * This field corresponds to the database column formula_config.english_name
eddie.woo's avatar
eddie.woo committed
80 81 82 83 84 85 86 87
     *
     * @mbg.generated
     */
    private String englishName;

    /**
     *
     * This field was generated by MyBatis Generator.
gary's avatar
gary committed
88
     * This field corresponds to the database column formula_config.service_type
eddie.woo's avatar
eddie.woo committed
89 90 91 92 93 94 95 96
     *
     * @mbg.generated
     */
    private String serviceType;

    /**
     *
     * This field was generated by MyBatis Generator.
gary's avatar
gary committed
97
     * This field corresponds to the database column formula_config.industry
eddie.woo's avatar
eddie.woo committed
98 99 100 101 102 103 104 105
     *
     * @mbg.generated
     */
    private String industry;

    /**
     *
     * This field was generated by MyBatis Generator.
gary's avatar
gary committed
106
     * This field corresponds to the database column formula_config.required_param_num
eddie.woo's avatar
eddie.woo committed
107 108 109 110 111 112 113
     *
     * @mbg.generated
     */
    private Integer requiredParamNum;

    /**
     * This field was generated by MyBatis Generator.
gary's avatar
gary committed
114
     * This field corresponds to the database table formula_config
eddie.woo's avatar
eddie.woo committed
115 116 117 118 119 120 121
     *
     * @mbg.generated
     */
    private static final long serialVersionUID = 1L;

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
122
     * This method returns the value of the database column formula_config.id
eddie.woo's avatar
eddie.woo committed
123
     *
gary's avatar
gary committed
124
     * @return the value of formula_config.id
eddie.woo's avatar
eddie.woo committed
125 126 127
     *
     * @mbg.generated
     */
neo's avatar
neo committed
128 129
    public String getId() {
        return id;
eddie.woo's avatar
eddie.woo committed
130 131 132 133
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
134
     * This method sets the value of the database column formula_config.id
eddie.woo's avatar
eddie.woo committed
135
     *
gary's avatar
gary committed
136
     * @param id the value for formula_config.id
eddie.woo's avatar
eddie.woo committed
137 138 139
     *
     * @mbg.generated
     */
neo's avatar
neo committed
140 141
    public void setId(String id) {
        this.id = id == null ? null : id.trim();
eddie.woo's avatar
eddie.woo committed
142 143 144 145
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
146
     * This method returns the value of the database column formula_config.formula_name
eddie.woo's avatar
eddie.woo committed
147
     *
gary's avatar
gary committed
148
     * @return the value of formula_config.formula_name
eddie.woo's avatar
eddie.woo committed
149 150 151 152 153 154 155 156 157
     *
     * @mbg.generated
     */
    public String getFormulaName() {
        return formulaName;
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
158
     * This method sets the value of the database column formula_config.formula_name
eddie.woo's avatar
eddie.woo committed
159
     *
gary's avatar
gary committed
160
     * @param formulaName the value for formula_config.formula_name
eddie.woo's avatar
eddie.woo committed
161 162 163 164 165 166 167 168 169
     *
     * @mbg.generated
     */
    public void setFormulaName(String formulaName) {
        this.formulaName = formulaName == null ? null : formulaName.trim();
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
170
     * This method returns the value of the database column formula_config.description
eddie.woo's avatar
eddie.woo committed
171
     *
gary's avatar
gary committed
172
     * @return the value of formula_config.description
eddie.woo's avatar
eddie.woo committed
173 174 175 176 177 178 179 180 181
     *
     * @mbg.generated
     */
    public String getDescription() {
        return description;
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
182
     * This method sets the value of the database column formula_config.description
eddie.woo's avatar
eddie.woo committed
183
     *
gary's avatar
gary committed
184
     * @param description the value for formula_config.description
eddie.woo's avatar
eddie.woo committed
185 186 187 188 189 190 191 192 193
     *
     * @mbg.generated
     */
    public void setDescription(String description) {
        this.description = description == null ? null : description.trim();
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
194
     * This method returns the value of the database column formula_config.calculate_status
eddie.woo's avatar
eddie.woo committed
195
     *
gary's avatar
gary committed
196
     * @return the value of formula_config.calculate_status
eddie.woo's avatar
eddie.woo committed
197 198 199 200 201 202 203 204 205
     *
     * @mbg.generated
     */
    public Integer getCalculateStatus() {
        return calculateStatus;
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
206
     * This method sets the value of the database column formula_config.calculate_status
eddie.woo's avatar
eddie.woo committed
207
     *
gary's avatar
gary committed
208
     * @param calculateStatus the value for formula_config.calculate_status
eddie.woo's avatar
eddie.woo committed
209 210 211 212 213 214 215 216 217
     *
     * @mbg.generated
     */
    public void setCalculateStatus(Integer calculateStatus) {
        this.calculateStatus = calculateStatus;
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
218
     * This method returns the value of the database column formula_config.data_source_type
eddie.woo's avatar
eddie.woo committed
219
     *
gary's avatar
gary committed
220
     * @return the value of formula_config.data_source_type
eddie.woo's avatar
eddie.woo committed
221 222 223 224 225 226 227 228 229
     *
     * @mbg.generated
     */
    public Integer getDataSourceType() {
        return dataSourceType;
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
230
     * This method sets the value of the database column formula_config.data_source_type
eddie.woo's avatar
eddie.woo committed
231
     *
gary's avatar
gary committed
232
     * @param dataSourceType the value for formula_config.data_source_type
eddie.woo's avatar
eddie.woo committed
233 234 235 236 237 238 239 240 241
     *
     * @mbg.generated
     */
    public void setDataSourceType(Integer dataSourceType) {
        this.dataSourceType = dataSourceType;
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
242
     * This method returns the value of the database column formula_config.data_source_name
eddie.woo's avatar
eddie.woo committed
243
     *
gary's avatar
gary committed
244
     * @return the value of formula_config.data_source_name
eddie.woo's avatar
eddie.woo committed
245 246 247 248 249 250 251 252 253
     *
     * @mbg.generated
     */
    public String getDataSourceName() {
        return dataSourceName;
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
254
     * This method sets the value of the database column formula_config.data_source_name
eddie.woo's avatar
eddie.woo committed
255
     *
gary's avatar
gary committed
256
     * @param dataSourceName the value for formula_config.data_source_name
eddie.woo's avatar
eddie.woo committed
257 258 259 260 261 262 263 264 265
     *
     * @mbg.generated
     */
    public void setDataSourceName(String dataSourceName) {
        this.dataSourceName = dataSourceName == null ? null : dataSourceName.trim();
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
266
     * This method returns the value of the database column formula_config.chinese_name
eddie.woo's avatar
eddie.woo committed
267
     *
gary's avatar
gary committed
268
     * @return the value of formula_config.chinese_name
eddie.woo's avatar
eddie.woo committed
269 270 271 272 273 274 275 276 277
     *
     * @mbg.generated
     */
    public String getChineseName() {
        return chineseName;
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
278
     * This method sets the value of the database column formula_config.chinese_name
eddie.woo's avatar
eddie.woo committed
279
     *
gary's avatar
gary committed
280
     * @param chineseName the value for formula_config.chinese_name
eddie.woo's avatar
eddie.woo committed
281 282 283 284 285 286 287 288 289
     *
     * @mbg.generated
     */
    public void setChineseName(String chineseName) {
        this.chineseName = chineseName == null ? null : chineseName.trim();
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
290
     * This method returns the value of the database column formula_config.english_name
eddie.woo's avatar
eddie.woo committed
291
     *
gary's avatar
gary committed
292
     * @return the value of formula_config.english_name
eddie.woo's avatar
eddie.woo committed
293 294 295 296 297 298 299 300 301
     *
     * @mbg.generated
     */
    public String getEnglishName() {
        return englishName;
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
302
     * This method sets the value of the database column formula_config.english_name
eddie.woo's avatar
eddie.woo committed
303
     *
gary's avatar
gary committed
304
     * @param englishName the value for formula_config.english_name
eddie.woo's avatar
eddie.woo committed
305 306 307 308 309 310 311 312 313
     *
     * @mbg.generated
     */
    public void setEnglishName(String englishName) {
        this.englishName = englishName == null ? null : englishName.trim();
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
314
     * This method returns the value of the database column formula_config.service_type
eddie.woo's avatar
eddie.woo committed
315
     *
gary's avatar
gary committed
316
     * @return the value of formula_config.service_type
eddie.woo's avatar
eddie.woo committed
317 318 319 320 321 322 323 324 325
     *
     * @mbg.generated
     */
    public String getServiceType() {
        return serviceType;
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
326
     * This method sets the value of the database column formula_config.service_type
eddie.woo's avatar
eddie.woo committed
327
     *
gary's avatar
gary committed
328
     * @param serviceType the value for formula_config.service_type
eddie.woo's avatar
eddie.woo committed
329 330 331 332 333 334 335 336 337
     *
     * @mbg.generated
     */
    public void setServiceType(String serviceType) {
        this.serviceType = serviceType == null ? null : serviceType.trim();
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
338
     * This method returns the value of the database column formula_config.industry
eddie.woo's avatar
eddie.woo committed
339
     *
gary's avatar
gary committed
340
     * @return the value of formula_config.industry
eddie.woo's avatar
eddie.woo committed
341 342 343 344 345 346 347 348 349
     *
     * @mbg.generated
     */
    public String getIndustry() {
        return industry;
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
350
     * This method sets the value of the database column formula_config.industry
eddie.woo's avatar
eddie.woo committed
351
     *
gary's avatar
gary committed
352
     * @param industry the value for formula_config.industry
eddie.woo's avatar
eddie.woo committed
353 354 355 356 357 358 359 360 361
     *
     * @mbg.generated
     */
    public void setIndustry(String industry) {
        this.industry = industry == null ? null : industry.trim();
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
362
     * This method returns the value of the database column formula_config.required_param_num
eddie.woo's avatar
eddie.woo committed
363
     *
gary's avatar
gary committed
364
     * @return the value of formula_config.required_param_num
eddie.woo's avatar
eddie.woo committed
365 366 367 368 369 370 371 372 373
     *
     * @mbg.generated
     */
    public Integer getRequiredParamNum() {
        return requiredParamNum;
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
374
     * This method sets the value of the database column formula_config.required_param_num
eddie.woo's avatar
eddie.woo committed
375
     *
gary's avatar
gary committed
376
     * @param requiredParamNum the value for formula_config.required_param_num
eddie.woo's avatar
eddie.woo committed
377 378 379 380 381 382 383 384 385
     *
     * @mbg.generated
     */
    public void setRequiredParamNum(Integer requiredParamNum) {
        this.requiredParamNum = requiredParamNum;
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
386
     * This method corresponds to the database table formula_config
eddie.woo's avatar
eddie.woo committed
387 388 389 390 391 392 393 394 395
     *
     * @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
396
        sb.append(", id=").append(id);
eddie.woo's avatar
eddie.woo committed
397 398 399 400 401 402 403 404 405 406 407 408 409 410
        sb.append(", formulaName=").append(formulaName);
        sb.append(", description=").append(description);
        sb.append(", calculateStatus=").append(calculateStatus);
        sb.append(", dataSourceType=").append(dataSourceType);
        sb.append(", dataSourceName=").append(dataSourceName);
        sb.append(", chineseName=").append(chineseName);
        sb.append(", englishName=").append(englishName);
        sb.append(", serviceType=").append(serviceType);
        sb.append(", industry=").append(industry);
        sb.append(", requiredParamNum=").append(requiredParamNum);
        sb.append("]");
        return sb.toString();
    }
}