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

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

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

    /**
gary's avatar
gary committed
24 25
     * Database Column Remarks:
     *   目前无实际用途
26
     *
eddie.woo's avatar
eddie.woo committed
27
     * This field was generated by MyBatis Generator.
gary's avatar
gary committed
28
     * This field corresponds to the database column organization.client_code
eddie.woo's avatar
eddie.woo committed
29 30 31 32 33 34
     *
     * @mbg.generated
     */
    private String clientCode;

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

    /**
gary's avatar
gary committed
44 45
     * Database Column Remarks:
     *   机构代码/机构编码   滴滴项目机构key为这个字段或taxPayerNumber
46
     *
eddie.woo's avatar
eddie.woo committed
47
     * This field was generated by MyBatis Generator.
gary's avatar
gary committed
48
     * This field corresponds to the database column organization.code
eddie.woo's avatar
eddie.woo committed
49 50 51 52 53 54
     *
     * @mbg.generated
     */
    private String code;

    /**
55
     *
eddie.woo's avatar
eddie.woo committed
56
     * This field was generated by MyBatis Generator.
gary's avatar
gary committed
57
     * This field corresponds to the database column organization.parent_id
eddie.woo's avatar
eddie.woo committed
58 59 60
     *
     * @mbg.generated
     */
neo's avatar
neo committed
61
    private String parentId;
eddie.woo's avatar
eddie.woo committed
62 63

    /**
64
     *
eddie.woo's avatar
eddie.woo committed
65
     * This field was generated by MyBatis Generator.
gary's avatar
gary committed
66
     * This field corresponds to the database column organization.tax_payer_number
eddie.woo's avatar
eddie.woo committed
67 68 69 70 71 72
     *
     * @mbg.generated
     */
    private String taxPayerNumber;

    /**
73
     *
eddie.woo's avatar
eddie.woo committed
74
     * This field was generated by MyBatis Generator.
gary's avatar
gary committed
75
     * This field corresponds to the database column organization.region_id
eddie.woo's avatar
eddie.woo committed
76 77 78
     *
     * @mbg.generated
     */
neo's avatar
neo committed
79
    private String regionId;
eddie.woo's avatar
eddie.woo committed
80 81

    /**
82
     *
eddie.woo's avatar
eddie.woo committed
83
     * This field was generated by MyBatis Generator.
gary's avatar
gary committed
84
     * This field corresponds to the database column organization.structure_id
eddie.woo's avatar
eddie.woo committed
85 86 87
     *
     * @mbg.generated
     */
neo's avatar
neo committed
88
    private String structureId;
eddie.woo's avatar
eddie.woo committed
89 90

    /**
91
     *
eddie.woo's avatar
eddie.woo committed
92
     * This field was generated by MyBatis Generator.
gary's avatar
gary committed
93
     * This field corresponds to the database column organization.industry_id
eddie.woo's avatar
eddie.woo committed
94 95 96
     *
     * @mbg.generated
     */
neo's avatar
neo committed
97
    private String industryId;
eddie.woo's avatar
eddie.woo committed
98 99

    /**
100
     *
eddie.woo's avatar
eddie.woo committed
101
     * This field was generated by MyBatis Generator.
gary's avatar
gary committed
102
     * This field corresponds to the database column organization.business_unit_id
eddie.woo's avatar
eddie.woo committed
103 104 105
     *
     * @mbg.generated
     */
neo's avatar
neo committed
106
    private String businessUnitId;
eddie.woo's avatar
eddie.woo committed
107 108

    /**
109
     *
eddie.woo's avatar
eddie.woo committed
110
     * This field was generated by MyBatis Generator.
gary's avatar
gary committed
111
     * This field corresponds to the database column organization.is_active
eddie.woo's avatar
eddie.woo committed
112 113 114 115 116 117
     *
     * @mbg.generated
     */
    private Boolean isActive;

    /**
118
     *
eddie.woo's avatar
eddie.woo committed
119
     * This field was generated by MyBatis Generator.
gary's avatar
gary committed
120
     * This field corresponds to the database column organization.p_level
eddie.woo's avatar
eddie.woo committed
121 122 123 124 125 126
     *
     * @mbg.generated
     */
    private Integer pLevel;

    /**
127
     *
eddie.woo's avatar
eddie.woo committed
128
     * This field was generated by MyBatis Generator.
gary's avatar
gary committed
129
     * This field corresponds to the database column organization.create_time
eddie.woo's avatar
eddie.woo committed
130 131 132 133 134 135
     *
     * @mbg.generated
     */
    private Date createTime;

    /**
136
     *
eddie.woo's avatar
eddie.woo committed
137
     * This field was generated by MyBatis Generator.
gary's avatar
gary committed
138
     * This field corresponds to the database column organization.update_time
eddie.woo's avatar
eddie.woo committed
139 140 141 142 143 144
     *
     * @mbg.generated
     */
    private Date updateTime;

    /**
145
     *
eddie.woo's avatar
eddie.woo committed
146
     * This field was generated by MyBatis Generator.
gary's avatar
gary committed
147
     * This field corresponds to the database column organization.area_id
eddie.woo's avatar
eddie.woo committed
148 149 150
     *
     * @mbg.generated
     */
neo's avatar
neo committed
151
    private String areaId;
eddie.woo's avatar
eddie.woo committed
152 153

    /**
154
     *
eddie.woo's avatar
eddie.woo committed
155
     * This field was generated by MyBatis Generator.
gary's avatar
gary committed
156
     * This field corresponds to the database column organization.english_name
eddie.woo's avatar
eddie.woo committed
157 158 159 160 161 162
     *
     * @mbg.generated
     */
    private String englishName;

    /**
163
     *
eddie.woo's avatar
eddie.woo committed
164
     * This field was generated by MyBatis Generator.
gary's avatar
gary committed
165
     * This field corresponds to the database column organization.abbreviation
eddie.woo's avatar
eddie.woo committed
166 167 168 169 170 171
     *
     * @mbg.generated
     */
    private String abbreviation;

    /**
172
     *
eddie.woo's avatar
eddie.woo committed
173
     * This field was generated by MyBatis Generator.
gary's avatar
gary committed
174
     * This field corresponds to the database column organization.invoice_type
eddie.woo's avatar
eddie.woo committed
175 176 177 178 179 180
     *
     * @mbg.generated
     */
    private String invoiceType;

    /**
181
     *
eddie.woo's avatar
eddie.woo committed
182
     * This field was generated by MyBatis Generator.
gary's avatar
gary committed
183
     * This field corresponds to the database column organization.legal_person_name
eddie.woo's avatar
eddie.woo committed
184 185 186 187 188 189
     *
     * @mbg.generated
     */
    private String legalPersonName;

    /**
190
     *
eddie.woo's avatar
eddie.woo committed
191
     * This field was generated by MyBatis Generator.
gary's avatar
gary committed
192
     * This field corresponds to the database column organization.manufacture_address
eddie.woo's avatar
eddie.woo committed
193 194 195 196 197 198
     *
     * @mbg.generated
     */
    private String manufactureAddress;

    /**
199
     *
eddie.woo's avatar
eddie.woo committed
200
     * This field was generated by MyBatis Generator.
gary's avatar
gary committed
201
     * This field corresponds to the database column organization.register_address
eddie.woo's avatar
eddie.woo committed
202 203 204 205 206 207
     *
     * @mbg.generated
     */
    private String registerAddress;

    /**
208
     *
eddie.woo's avatar
eddie.woo committed
209
     * This field was generated by MyBatis Generator.
gary's avatar
gary committed
210
     * This field corresponds to the database column organization.bank_account_name
eddie.woo's avatar
eddie.woo committed
211 212 213 214 215 216
     *
     * @mbg.generated
     */
    private String bankAccountName;

    /**
217
     *
eddie.woo's avatar
eddie.woo committed
218
     * This field was generated by MyBatis Generator.
gary's avatar
gary committed
219
     * This field corresponds to the database column organization.bank_account_number
eddie.woo's avatar
eddie.woo committed
220 221 222 223 224 225
     *
     * @mbg.generated
     */
    private String bankAccountNumber;

    /**
226
     *
eddie.woo's avatar
eddie.woo committed
227
     * This field was generated by MyBatis Generator.
gary's avatar
gary committed
228
     * This field corresponds to the database column organization.phone_number
eddie.woo's avatar
eddie.woo committed
229 230 231 232 233 234
     *
     * @mbg.generated
     */
    private String phoneNumber;

    /**
235
     *
eddie.woo's avatar
eddie.woo committed
236
     * This field was generated by MyBatis Generator.
gary's avatar
gary committed
237
     * This field corresponds to the database column organization.registration_type
eddie.woo's avatar
eddie.woo committed
238 239 240 241 242 243
     *
     * @mbg.generated
     */
    private String registrationType;

    /**
244
     *
eddie.woo's avatar
eddie.woo committed
245
     * This field was generated by MyBatis Generator.
gary's avatar
gary committed
246
     * This field corresponds to the database column organization.remark
eddie.woo's avatar
eddie.woo committed
247 248 249 250 251 252
     *
     * @mbg.generated
     */
    private String remark;

    /**
253
     *
eddie.woo's avatar
eddie.woo committed
254
     * This field was generated by MyBatis Generator.
gary's avatar
gary committed
255
     * This field corresponds to the database column organization.vehicle_routing_location
eddie.woo's avatar
eddie.woo committed
256 257 258
     *
     * @mbg.generated
     */
gary's avatar
gary committed
259 260
    private String vehicleRoutingLocation;

eddie.woo's avatar
eddie.woo committed
261
    /**
262
     *
eddie.woo's avatar
eddie.woo committed
263
     * This field was generated by MyBatis Generator.
gary's avatar
gary committed
264
     * This field corresponds to the database column organization.ratepayer
eddie.woo's avatar
eddie.woo committed
265 266 267 268 269 270
     *
     * @mbg.generated
     */
    private String ratepayer;

    /**
271
     *
eddie.woo's avatar
eddie.woo committed
272
     * This field was generated by MyBatis Generator.
gary's avatar
gary committed
273
     * This field corresponds to the database column organization.address
eddie.woo's avatar
eddie.woo committed
274 275 276 277 278 279
     *
     * @mbg.generated
     */
    private String address;

    /**
280
     *
eddie.woo's avatar
eddie.woo committed
281
     * This field was generated by MyBatis Generator.
gary's avatar
gary committed
282
     * This field corresponds to the database column organization.foundation_date
eddie.woo's avatar
eddie.woo committed
283 284 285 286 287 288
     *
     * @mbg.generated
     */
    private Date foundationDate;

    /**
289
     *
eddie.woo's avatar
eddie.woo committed
290
     * This field was generated by MyBatis Generator.
gary's avatar
gary committed
291
     * This field corresponds to the database column organization.registration_date
eddie.woo's avatar
eddie.woo committed
292 293 294 295 296 297
     *
     * @mbg.generated
     */
    private Date registrationDate;

    /**
298
     *
eddie.woo's avatar
eddie.woo committed
299
     * This field was generated by MyBatis Generator.
gary's avatar
gary committed
300
     * This field corresponds to the database column organization.registration_location
eddie.woo's avatar
eddie.woo committed
301 302 303 304 305 306
     *
     * @mbg.generated
     */
    private String registrationLocation;

    /**
gary's avatar
gary committed
307 308
     * Database Column Remarks:
     *   注册资本
309
     *
eddie.woo's avatar
eddie.woo committed
310
     * This field was generated by MyBatis Generator.
gary's avatar
gary committed
311
     * This field corresponds to the database column organization.registration_capital
eddie.woo's avatar
eddie.woo committed
312 313 314 315 316 317
     *
     * @mbg.generated
     */
    private String registrationCapital;

    /**
318
     *
eddie.woo's avatar
eddie.woo committed
319
     * This field was generated by MyBatis Generator.
gary's avatar
gary committed
320
     * This field corresponds to the database column organization.business_allotted_time_from
eddie.woo's avatar
eddie.woo committed
321 322 323 324 325 326
     *
     * @mbg.generated
     */
    private Date businessAllottedTimeFrom;

    /**
327
     *
eddie.woo's avatar
eddie.woo committed
328
     * This field was generated by MyBatis Generator.
gary's avatar
gary committed
329
     * This field corresponds to the database column organization.business_allotted_time_to
eddie.woo's avatar
eddie.woo committed
330 331 332 333 334 335
     *
     * @mbg.generated
     */
    private Date businessAllottedTimeTo;

    /**
336
     *
eddie.woo's avatar
eddie.woo committed
337
     * This field was generated by MyBatis Generator.
gary's avatar
gary committed
338
     * This field corresponds to the database column organization.legal_code
eddie.woo's avatar
eddie.woo committed
339 340 341 342 343
     *
     * @mbg.generated
     */
    private String legalCode;

gary's avatar
gary committed
344 345 346 347 348 349 350 351
    /**
     *
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column organization.vehicleroutinglocation
     *
     * @mbg.generated
     */
    private String vehicleroutinglocation;
gary's avatar
gary committed
352

gary's avatar
gary committed
353 354 355 356 357
    /**
     * Database Column Remarks:
     *   经营范围
     *
     * This field was generated by MyBatis Generator.
gary's avatar
gary committed
358
     * This field corresponds to the database column organization.business_scope
gary's avatar
gary committed
359 360 361 362
     *
     * @mbg.generated
     */
    private String businessScope;
gary's avatar
gary committed
363

gary's avatar
gary committed
364 365 366 367 368 369 370 371 372 373
    /**
     * Database Column Remarks:
     *   架构类型
     *
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column organization.architecture_type
     *
     * @mbg.generated
     */
    private String architectureType;
gary's avatar
gary committed
374

eddie.woo's avatar
eddie.woo committed
375
    /**
gary's avatar
gary committed
376
     * Database Column Remarks:
gary's avatar
gary committed
377
     *   分公司数量。税务系统自动计算无法更改,从主数据通过相同的总公司名称抓子公司再count;只有在总公司的时候自动更新数量,分公司则无此字段
gary's avatar
gary committed
378 379 380 381 382 383
     *
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column organization.num_of_branches
     *
     * @mbg.generated
     */
384
    private Integer numOfBranches;
gary's avatar
gary committed
385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409

    /**
     * Database Column Remarks:
     *   接口更新标识
     *
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column organization.api_update_flag
     *
     * @mbg.generated
     */
    private Boolean apiUpdateFlag;

    /**
     * Database Column Remarks:
     *   一般纳税人生效时间。2018年1月3日
     *
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column organization.effec_time_of_general_taxpayers
     *
     * @mbg.generated
     */
    private Date effecTimeOfGeneralTaxpayers;

    /**
     * Database Column Remarks:
gary's avatar
gary committed
410
     *   注册地址(住所)英文
gary's avatar
gary committed
411 412
     *
     * This field was generated by MyBatis Generator.
gary's avatar
gary committed
413
     * This field corresponds to the database column organization.registration_location_en
gary's avatar
gary committed
414 415 416
     *
     * @mbg.generated
     */
gary's avatar
gary committed
417
    private String registrationLocationEn;
gary's avatar
gary committed
418 419 420

    /**
     * Database Column Remarks:
gary's avatar
gary committed
421
     *   实缴资本
gary's avatar
gary committed
422 423
     *
     * This field was generated by MyBatis Generator.
gary's avatar
gary committed
424
     * This field corresponds to the database column organization.paid_in_capital
gary's avatar
gary committed
425 426 427
     *
     * @mbg.generated
     */
gary's avatar
gary committed
428
    private String paidInCapital;
gary's avatar
gary committed
429 430 431

    /**
     * Database Column Remarks:
gary's avatar
gary committed
432
     *   一般纳税人生效时间.2018年1月3日
gary's avatar
gary committed
433
     *
eddie.woo's avatar
eddie.woo committed
434
     * This field was generated by MyBatis Generator.
gary's avatar
gary committed
435
     * This field corresponds to the database column organization.general_tax_payer_effective_time
gary's avatar
gary committed
436 437 438
     *
     * @mbg.generated
     */
gary's avatar
gary committed
439
    private Date generalTaxPayerEffectiveTime;
gary's avatar
gary committed
440 441 442

    /**
     * Database Column Remarks:
gary's avatar
gary committed
443
     *   是否为境外企业。0-境内企业,1-境外企业
gary's avatar
gary committed
444 445
     *
     * This field was generated by MyBatis Generator.
gary's avatar
gary committed
446
     * This field corresponds to the database column organization.oversea
gary's avatar
gary committed
447 448 449
     *
     * @mbg.generated
     */
gary's avatar
gary committed
450
    private Boolean oversea;
gary's avatar
gary committed
451 452 453

    /**
     * Database Column Remarks:
gary's avatar
gary committed
454
     *   工商登记状态.存续/注销中/已注销
gary's avatar
gary committed
455 456
     *
     * This field was generated by MyBatis Generator.
gary's avatar
gary committed
457
     * This field corresponds to the database column organization.reg_status
gary's avatar
gary committed
458 459 460
     *
     * @mbg.generated
     */
gary's avatar
gary committed
461
    private String regStatus;
gary's avatar
gary committed
462 463 464

    /**
     * Database Column Remarks:
gary's avatar
gary committed
465
     *   所属国民经济行业(填写代码)
gary's avatar
gary committed
466 467
     *
     * This field was generated by MyBatis Generator.
gary's avatar
gary committed
468
     * This field corresponds to the database column organization.national_economic_industry
gary's avatar
gary committed
469 470 471
     *
     * @mbg.generated
     */
gary's avatar
gary committed
472
    private String nationalEconomicIndustry;
gary's avatar
gary committed
473 474 475

    /**
     * Database Column Remarks:
gary's avatar
gary committed
476
     *   从事国家限制或禁止行业
gary's avatar
gary committed
477 478
     *
     * This field was generated by MyBatis Generator.
gary's avatar
gary committed
479
     * This field corresponds to the database column organization.engage_national_prohibit_industry
gary's avatar
gary committed
480 481 482
     *
     * @mbg.generated
     */
gary's avatar
gary committed
483
    private Boolean engageNationalProhibitIndustry;
gary's avatar
gary committed
484

gary's avatar
gary committed
485 486 487 488 489 490 491 492 493 494
    /**
     * Database Column Remarks:
     *   注销时间。
     *
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column organization.logout_time
     *
     * @mbg.generated
     */
    private Date logoutTime;
gary's avatar
gary committed
495

496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548
    /**
     * Database Column Remarks:
     *   账套ID(DD)
     *
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column organization.enterprise_account_code
     *
     * @mbg.generated
     */
    private String enterpriseAccountCode;

    /**
     * Database Column Remarks:
     *   账套名称(DD)
     *
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column organization.enterprise_account_name
     *
     * @mbg.generated
     */
    private String enterpriseAccountName;

    /**
     * Database Column Remarks:
     *   本位币币种(DD)
     *
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column organization.currency_code
     *
     * @mbg.generated
     */
    private String currencyCode;

    /**
     * Database Column Remarks:
     *   法人主体
     *
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column organization.legal_entity
     *
     * @mbg.generated
     */
    private String legalEntity;

    /**
     *
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column organization.ps_code
     *
     * @mbg.generated
     */
    private String psCode;

gary's avatar
gary committed
549 550 551 552 553 554 555 556 557 558 559
    /**
     * Database Column Remarks:
     *   国家
     *
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column organization.country
     *
     * @mbg.generated
     */
    private String country;

gary's avatar
gary committed
560 561 562 563 564 565 566
    private Area area;

    private BusinessUnit businessUnit;

    /**
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database table organization
eddie.woo's avatar
eddie.woo committed
567 568 569 570 571 572 573
     *
     * @mbg.generated
     */
    private static final long serialVersionUID = 1L;

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
574
     * This method returns the value of the database column organization.id
575
     *
gary's avatar
gary committed
576
     * @return the value of organization.id
eddie.woo's avatar
eddie.woo committed
577 578 579
     *
     * @mbg.generated
     */
neo's avatar
neo committed
580 581
    public String getId() {
        return id;
eddie.woo's avatar
eddie.woo committed
582 583 584 585
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
586
     * This method sets the value of the database column organization.id
587
     *
gary's avatar
gary committed
588
     * @param id the value for organization.id
eddie.woo's avatar
eddie.woo committed
589 590 591
     *
     * @mbg.generated
     */
neo's avatar
neo committed
592 593
    public void setId(String id) {
        this.id = id == null ? null : id.trim();
eddie.woo's avatar
eddie.woo committed
594 595 596 597
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
598
     * This method returns the value of the database column organization.client_code
599
     *
gary's avatar
gary committed
600
     * @return the value of organization.client_code
eddie.woo's avatar
eddie.woo committed
601 602 603 604 605 606 607 608 609
     *
     * @mbg.generated
     */
    public String getClientCode() {
        return clientCode;
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
610
     * This method sets the value of the database column organization.client_code
611
     *
gary's avatar
gary committed
612
     * @param clientCode the value for organization.client_code
eddie.woo's avatar
eddie.woo committed
613 614 615 616 617 618 619 620 621
     *
     * @mbg.generated
     */
    public void setClientCode(String clientCode) {
        this.clientCode = clientCode == null ? null : clientCode.trim();
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
622
     * This method returns the value of the database column organization.name
623
     *
gary's avatar
gary committed
624
     * @return the value of organization.name
eddie.woo's avatar
eddie.woo committed
625 626 627 628 629 630 631 632 633
     *
     * @mbg.generated
     */
    public String getName() {
        return name;
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
634
     * This method sets the value of the database column organization.name
635
     *
gary's avatar
gary committed
636
     * @param name the value for organization.name
eddie.woo's avatar
eddie.woo committed
637 638 639 640 641 642 643 644 645
     *
     * @mbg.generated
     */
    public void setName(String name) {
        this.name = name == null ? null : name.trim();
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
646
     * This method returns the value of the database column organization.code
647
     *
gary's avatar
gary committed
648
     * @return the value of organization.code
eddie.woo's avatar
eddie.woo committed
649 650 651 652 653 654 655 656 657
     *
     * @mbg.generated
     */
    public String getCode() {
        return code;
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
658
     * This method sets the value of the database column organization.code
659
     *
gary's avatar
gary committed
660
     * @param code the value for organization.code
eddie.woo's avatar
eddie.woo committed
661 662 663 664 665 666 667 668 669
     *
     * @mbg.generated
     */
    public void setCode(String code) {
        this.code = code == null ? null : code.trim();
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
670
     * This method returns the value of the database column organization.parent_id
671
     *
gary's avatar
gary committed
672
     * @return the value of organization.parent_id
eddie.woo's avatar
eddie.woo committed
673 674 675
     *
     * @mbg.generated
     */
neo's avatar
neo committed
676 677
    public String getParentId() {
        return parentId;
eddie.woo's avatar
eddie.woo committed
678 679 680 681
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
682
     * This method sets the value of the database column organization.parent_id
683
     *
gary's avatar
gary committed
684
     * @param parentId the value for organization.parent_id
eddie.woo's avatar
eddie.woo committed
685 686 687
     *
     * @mbg.generated
     */
neo's avatar
neo committed
688 689
    public void setParentId(String parentId) {
        this.parentId = parentId == null ? null : parentId.trim();
eddie.woo's avatar
eddie.woo committed
690 691 692 693
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
694
     * This method returns the value of the database column organization.tax_payer_number
695
     *
gary's avatar
gary committed
696
     * @return the value of organization.tax_payer_number
eddie.woo's avatar
eddie.woo committed
697 698 699 700 701 702 703 704 705
     *
     * @mbg.generated
     */
    public String getTaxPayerNumber() {
        return taxPayerNumber;
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
706
     * This method sets the value of the database column organization.tax_payer_number
707
     *
gary's avatar
gary committed
708
     * @param taxPayerNumber the value for organization.tax_payer_number
eddie.woo's avatar
eddie.woo committed
709 710 711 712 713 714 715 716 717
     *
     * @mbg.generated
     */
    public void setTaxPayerNumber(String taxPayerNumber) {
        this.taxPayerNumber = taxPayerNumber == null ? null : taxPayerNumber.trim();
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
718
     * This method returns the value of the database column organization.region_id
719
     *
gary's avatar
gary committed
720
     * @return the value of organization.region_id
eddie.woo's avatar
eddie.woo committed
721 722 723
     *
     * @mbg.generated
     */
neo's avatar
neo committed
724 725
    public String getRegionId() {
        return regionId;
eddie.woo's avatar
eddie.woo committed
726 727 728 729
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
730
     * This method sets the value of the database column organization.region_id
731
     *
gary's avatar
gary committed
732
     * @param regionId the value for organization.region_id
eddie.woo's avatar
eddie.woo committed
733 734 735
     *
     * @mbg.generated
     */
neo's avatar
neo committed
736 737
    public void setRegionId(String regionId) {
        this.regionId = regionId == null ? null : regionId.trim();
eddie.woo's avatar
eddie.woo committed
738 739 740 741
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
742
     * This method returns the value of the database column organization.structure_id
743
     *
gary's avatar
gary committed
744
     * @return the value of organization.structure_id
eddie.woo's avatar
eddie.woo committed
745 746 747
     *
     * @mbg.generated
     */
neo's avatar
neo committed
748 749
    public String getStructureId() {
        return structureId;
eddie.woo's avatar
eddie.woo committed
750 751 752 753
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
754
     * This method sets the value of the database column organization.structure_id
755
     *
gary's avatar
gary committed
756
     * @param structureId the value for organization.structure_id
eddie.woo's avatar
eddie.woo committed
757 758 759
     *
     * @mbg.generated
     */
neo's avatar
neo committed
760 761
    public void setStructureId(String structureId) {
        this.structureId = structureId == null ? null : structureId.trim();
eddie.woo's avatar
eddie.woo committed
762 763 764 765
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
766
     * This method returns the value of the database column organization.industry_id
767
     *
gary's avatar
gary committed
768
     * @return the value of organization.industry_id
eddie.woo's avatar
eddie.woo committed
769 770 771
     *
     * @mbg.generated
     */
neo's avatar
neo committed
772 773
    public String getIndustryId() {
        return industryId;
eddie.woo's avatar
eddie.woo committed
774 775 776 777
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
778
     * This method sets the value of the database column organization.industry_id
779
     *
gary's avatar
gary committed
780
     * @param industryId the value for organization.industry_id
eddie.woo's avatar
eddie.woo committed
781 782 783
     *
     * @mbg.generated
     */
neo's avatar
neo committed
784 785
    public void setIndustryId(String industryId) {
        this.industryId = industryId == null ? null : industryId.trim();
eddie.woo's avatar
eddie.woo committed
786 787 788 789
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
790
     * This method returns the value of the database column organization.business_unit_id
791
     *
gary's avatar
gary committed
792
     * @return the value of organization.business_unit_id
eddie.woo's avatar
eddie.woo committed
793 794 795
     *
     * @mbg.generated
     */
neo's avatar
neo committed
796 797
    public String getBusinessUnitId() {
        return businessUnitId;
eddie.woo's avatar
eddie.woo committed
798 799 800 801
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
802
     * This method sets the value of the database column organization.business_unit_id
803
     *
gary's avatar
gary committed
804
     * @param businessUnitId the value for organization.business_unit_id
eddie.woo's avatar
eddie.woo committed
805 806 807
     *
     * @mbg.generated
     */
neo's avatar
neo committed
808 809
    public void setBusinessUnitId(String businessUnitId) {
        this.businessUnitId = businessUnitId == null ? null : businessUnitId.trim();
eddie.woo's avatar
eddie.woo committed
810 811 812 813
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
814
     * This method returns the value of the database column organization.is_active
815
     *
gary's avatar
gary committed
816
     * @return the value of organization.is_active
eddie.woo's avatar
eddie.woo committed
817 818 819 820 821 822 823 824 825
     *
     * @mbg.generated
     */
    public Boolean getIsActive() {
        return isActive;
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
826
     * This method sets the value of the database column organization.is_active
827
     *
gary's avatar
gary committed
828
     * @param isActive the value for organization.is_active
eddie.woo's avatar
eddie.woo committed
829 830 831 832 833 834 835 836 837
     *
     * @mbg.generated
     */
    public void setIsActive(Boolean isActive) {
        this.isActive = isActive;
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
838
     * This method returns the value of the database column organization.p_level
839
     *
gary's avatar
gary committed
840
     * @return the value of organization.p_level
eddie.woo's avatar
eddie.woo committed
841 842 843 844 845 846 847 848 849
     *
     * @mbg.generated
     */
    public Integer getpLevel() {
        return pLevel;
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
850
     * This method sets the value of the database column organization.p_level
851
     *
gary's avatar
gary committed
852
     * @param pLevel the value for organization.p_level
eddie.woo's avatar
eddie.woo committed
853 854 855 856 857 858 859
     *
     * @mbg.generated
     */
    public void setpLevel(Integer pLevel) {
        this.pLevel = pLevel;
    }

gary's avatar
gary committed
860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883
    /**
     * This method was generated by MyBatis Generator.
     * This method returns the value of the database column organization.p_level
     *
     * @return the value of organization.p_level
     *
     * @mbg.generated
     */
    public Integer getPLevel() {
        return pLevel;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method sets the value of the database column organization.p_level
     *
     * @param pLevel the value for organization.p_level
     *
     * @mbg.generated
     */
    public void setPLevel(Integer pLevel) {
        this.pLevel = pLevel;
    }

eddie.woo's avatar
eddie.woo committed
884 885
    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
886
     * This method returns the value of the database column organization.create_time
887
     *
gary's avatar
gary committed
888
     * @return the value of organization.create_time
eddie.woo's avatar
eddie.woo committed
889 890 891 892 893 894 895 896 897
     *
     * @mbg.generated
     */
    public Date getCreateTime() {
        return createTime;
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
898
     * This method sets the value of the database column organization.create_time
899
     *
gary's avatar
gary committed
900
     * @param createTime the value for organization.create_time
eddie.woo's avatar
eddie.woo committed
901 902 903 904 905 906 907 908 909
     *
     * @mbg.generated
     */
    public void setCreateTime(Date createTime) {
        this.createTime = createTime;
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
910
     * This method returns the value of the database column organization.update_time
911
     *
gary's avatar
gary committed
912
     * @return the value of organization.update_time
eddie.woo's avatar
eddie.woo committed
913 914 915 916 917 918 919 920 921
     *
     * @mbg.generated
     */
    public Date getUpdateTime() {
        return updateTime;
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
922
     * This method sets the value of the database column organization.update_time
923
     *
gary's avatar
gary committed
924
     * @param updateTime the value for organization.update_time
eddie.woo's avatar
eddie.woo committed
925 926 927 928 929 930 931 932 933
     *
     * @mbg.generated
     */
    public void setUpdateTime(Date updateTime) {
        this.updateTime = updateTime;
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
934
     * This method returns the value of the database column organization.area_id
935
     *
gary's avatar
gary committed
936
     * @return the value of organization.area_id
eddie.woo's avatar
eddie.woo committed
937 938 939
     *
     * @mbg.generated
     */
neo's avatar
neo committed
940 941
    public String getAreaId() {
        return areaId;
eddie.woo's avatar
eddie.woo committed
942 943 944 945
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
946
     * This method sets the value of the database column organization.area_id
947
     *
gary's avatar
gary committed
948
     * @param areaId the value for organization.area_id
eddie.woo's avatar
eddie.woo committed
949 950 951
     *
     * @mbg.generated
     */
neo's avatar
neo committed
952 953
    public void setAreaId(String areaId) {
        this.areaId = areaId == null ? null : areaId.trim();
eddie.woo's avatar
eddie.woo committed
954 955 956 957
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
958
     * This method returns the value of the database column organization.english_name
959
     *
gary's avatar
gary committed
960
     * @return the value of organization.english_name
eddie.woo's avatar
eddie.woo committed
961 962 963 964 965 966 967 968 969
     *
     * @mbg.generated
     */
    public String getEnglishName() {
        return englishName;
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
970
     * This method sets the value of the database column organization.english_name
971
     *
gary's avatar
gary committed
972
     * @param englishName the value for organization.english_name
eddie.woo's avatar
eddie.woo committed
973 974 975 976 977 978 979 980 981
     *
     * @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
982
     * This method returns the value of the database column organization.abbreviation
983
     *
gary's avatar
gary committed
984
     * @return the value of organization.abbreviation
eddie.woo's avatar
eddie.woo committed
985 986 987 988 989 990 991 992 993
     *
     * @mbg.generated
     */
    public String getAbbreviation() {
        return abbreviation;
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
994
     * This method sets the value of the database column organization.abbreviation
995
     *
gary's avatar
gary committed
996
     * @param abbreviation the value for organization.abbreviation
eddie.woo's avatar
eddie.woo committed
997 998 999 1000 1001 1002 1003 1004 1005
     *
     * @mbg.generated
     */
    public void setAbbreviation(String abbreviation) {
        this.abbreviation = abbreviation == null ? null : abbreviation.trim();
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
1006
     * This method returns the value of the database column organization.invoice_type
1007
     *
gary's avatar
gary committed
1008
     * @return the value of organization.invoice_type
eddie.woo's avatar
eddie.woo committed
1009 1010 1011 1012 1013 1014 1015 1016 1017
     *
     * @mbg.generated
     */
    public String getInvoiceType() {
        return invoiceType;
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
1018
     * This method sets the value of the database column organization.invoice_type
1019
     *
gary's avatar
gary committed
1020
     * @param invoiceType the value for organization.invoice_type
eddie.woo's avatar
eddie.woo committed
1021 1022 1023 1024 1025 1026 1027 1028 1029
     *
     * @mbg.generated
     */
    public void setInvoiceType(String invoiceType) {
        this.invoiceType = invoiceType == null ? null : invoiceType.trim();
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
1030
     * This method returns the value of the database column organization.legal_person_name
1031
     *
gary's avatar
gary committed
1032
     * @return the value of organization.legal_person_name
eddie.woo's avatar
eddie.woo committed
1033 1034 1035 1036 1037 1038 1039 1040 1041
     *
     * @mbg.generated
     */
    public String getLegalPersonName() {
        return legalPersonName;
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
1042
     * This method sets the value of the database column organization.legal_person_name
1043
     *
gary's avatar
gary committed
1044
     * @param legalPersonName the value for organization.legal_person_name
eddie.woo's avatar
eddie.woo committed
1045 1046 1047 1048 1049 1050 1051 1052 1053
     *
     * @mbg.generated
     */
    public void setLegalPersonName(String legalPersonName) {
        this.legalPersonName = legalPersonName == null ? null : legalPersonName.trim();
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
1054
     * This method returns the value of the database column organization.manufacture_address
1055
     *
gary's avatar
gary committed
1056
     * @return the value of organization.manufacture_address
eddie.woo's avatar
eddie.woo committed
1057 1058 1059 1060 1061 1062 1063 1064 1065
     *
     * @mbg.generated
     */
    public String getManufactureAddress() {
        return manufactureAddress;
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
1066
     * This method sets the value of the database column organization.manufacture_address
1067
     *
gary's avatar
gary committed
1068
     * @param manufactureAddress the value for organization.manufacture_address
eddie.woo's avatar
eddie.woo committed
1069 1070 1071 1072 1073 1074 1075
     *
     * @mbg.generated
     */
    public void setManufactureAddress(String manufactureAddress) {
        this.manufactureAddress = manufactureAddress == null ? null : manufactureAddress.trim();
    }

gary's avatar
gary committed
1076 1077 1078
    /**
     * This method was generated by MyBatis Generator.
     * This method returns the value of the database column organization.register_address
1079
     *
gary's avatar
gary committed
1080
     * @return the value of organization.register_address
eddie.woo's avatar
eddie.woo committed
1081 1082 1083 1084 1085 1086 1087 1088 1089
     *
     * @mbg.generated
     */
    public String getRegisterAddress() {
        return registerAddress;
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
1090
     * This method sets the value of the database column organization.register_address
1091
     *
gary's avatar
gary committed
1092
     * @param registerAddress the value for organization.register_address
eddie.woo's avatar
eddie.woo committed
1093 1094 1095 1096 1097 1098 1099 1100 1101
     *
     * @mbg.generated
     */
    public void setRegisterAddress(String registerAddress) {
        this.registerAddress = registerAddress == null ? null : registerAddress.trim();
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
1102
     * This method returns the value of the database column organization.bank_account_name
1103
     *
gary's avatar
gary committed
1104
     * @return the value of organization.bank_account_name
eddie.woo's avatar
eddie.woo committed
1105 1106 1107 1108 1109 1110 1111 1112 1113
     *
     * @mbg.generated
     */
    public String getBankAccountName() {
        return bankAccountName;
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
1114
     * This method sets the value of the database column organization.bank_account_name
1115
     *
gary's avatar
gary committed
1116
     * @param bankAccountName the value for organization.bank_account_name
eddie.woo's avatar
eddie.woo committed
1117 1118 1119 1120 1121 1122 1123 1124 1125
     *
     * @mbg.generated
     */
    public void setBankAccountName(String bankAccountName) {
        this.bankAccountName = bankAccountName == null ? null : bankAccountName.trim();
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
1126
     * This method returns the value of the database column organization.bank_account_number
1127
     *
gary's avatar
gary committed
1128
     * @return the value of organization.bank_account_number
eddie.woo's avatar
eddie.woo committed
1129 1130 1131 1132 1133 1134 1135 1136 1137
     *
     * @mbg.generated
     */
    public String getBankAccountNumber() {
        return bankAccountNumber;
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
1138
     * This method sets the value of the database column organization.bank_account_number
1139
     *
gary's avatar
gary committed
1140
     * @param bankAccountNumber the value for organization.bank_account_number
eddie.woo's avatar
eddie.woo committed
1141 1142 1143 1144 1145 1146 1147 1148 1149
     *
     * @mbg.generated
     */
    public void setBankAccountNumber(String bankAccountNumber) {
        this.bankAccountNumber = bankAccountNumber == null ? null : bankAccountNumber.trim();
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
1150
     * This method returns the value of the database column organization.phone_number
1151
     *
gary's avatar
gary committed
1152
     * @return the value of organization.phone_number
eddie.woo's avatar
eddie.woo committed
1153 1154 1155 1156 1157 1158 1159 1160 1161
     *
     * @mbg.generated
     */
    public String getPhoneNumber() {
        return phoneNumber;
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
1162
     * This method sets the value of the database column organization.phone_number
1163
     *
gary's avatar
gary committed
1164
     * @param phoneNumber the value for organization.phone_number
eddie.woo's avatar
eddie.woo committed
1165 1166 1167 1168 1169 1170 1171 1172 1173
     *
     * @mbg.generated
     */
    public void setPhoneNumber(String phoneNumber) {
        this.phoneNumber = phoneNumber == null ? null : phoneNumber.trim();
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
1174
     * This method returns the value of the database column organization.registration_type
1175
     *
gary's avatar
gary committed
1176
     * @return the value of organization.registration_type
eddie.woo's avatar
eddie.woo committed
1177 1178 1179 1180 1181 1182 1183 1184 1185
     *
     * @mbg.generated
     */
    public String getRegistrationType() {
        return registrationType;
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
1186
     * This method sets the value of the database column organization.registration_type
1187
     *
gary's avatar
gary committed
1188
     * @param registrationType the value for organization.registration_type
eddie.woo's avatar
eddie.woo committed
1189 1190 1191 1192 1193 1194 1195 1196 1197
     *
     * @mbg.generated
     */
    public void setRegistrationType(String registrationType) {
        this.registrationType = registrationType == null ? null : registrationType.trim();
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
1198
     * This method returns the value of the database column organization.remark
1199
     *
gary's avatar
gary committed
1200
     * @return the value of organization.remark
eddie.woo's avatar
eddie.woo committed
1201 1202 1203 1204 1205 1206 1207 1208 1209
     *
     * @mbg.generated
     */
    public String getRemark() {
        return remark;
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
1210
     * This method sets the value of the database column organization.remark
1211
     *
gary's avatar
gary committed
1212
     * @param remark the value for organization.remark
eddie.woo's avatar
eddie.woo committed
1213 1214 1215 1216 1217 1218 1219 1220 1221
     *
     * @mbg.generated
     */
    public void setRemark(String remark) {
        this.remark = remark == null ? null : remark.trim();
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
1222
     * This method returns the value of the database column organization.vehicle_routing_location
1223
     *
gary's avatar
gary committed
1224
     * @return the value of organization.vehicle_routing_location
eddie.woo's avatar
eddie.woo committed
1225 1226 1227
     *
     * @mbg.generated
     */
gary's avatar
gary committed
1228 1229
    public String getVehicleRoutingLocation() {
        return vehicleRoutingLocation;
eddie.woo's avatar
eddie.woo committed
1230 1231 1232 1233
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
1234
     * This method sets the value of the database column organization.vehicle_routing_location
1235
     *
gary's avatar
gary committed
1236
     * @param vehicleRoutingLocation the value for organization.vehicle_routing_location
eddie.woo's avatar
eddie.woo committed
1237 1238 1239
     *
     * @mbg.generated
     */
gary's avatar
gary committed
1240 1241
    public void setVehicleRoutingLocation(String vehicleRoutingLocation) {
        this.vehicleRoutingLocation = vehicleRoutingLocation == null ? null : vehicleRoutingLocation.trim();
eddie.woo's avatar
eddie.woo committed
1242 1243 1244
    }

    /**
eddie.woo's avatar
eddie.woo committed
1245
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
1246
     * This method returns the value of the database column organization.ratepayer
1247
     *
gary's avatar
gary committed
1248
     * @return the value of organization.ratepayer
eddie.woo's avatar
eddie.woo committed
1249 1250
     *
     * @mbg.generated
eddie.woo's avatar
eddie.woo committed
1251
     */
eddie.woo's avatar
eddie.woo committed
1252 1253
    public String getRatepayer() {
        return ratepayer;
eddie.woo's avatar
eddie.woo committed
1254 1255 1256
    }

    /**
eddie.woo's avatar
eddie.woo committed
1257
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
1258
     * This method sets the value of the database column organization.ratepayer
1259
     *
gary's avatar
gary committed
1260
     * @param ratepayer the value for organization.ratepayer
eddie.woo's avatar
eddie.woo committed
1261 1262
     *
     * @mbg.generated
eddie.woo's avatar
eddie.woo committed
1263
     */
eddie.woo's avatar
eddie.woo committed
1264 1265 1266 1267 1268 1269
    public void setRatepayer(String ratepayer) {
        this.ratepayer = ratepayer == null ? null : ratepayer.trim();
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
1270
     * This method returns the value of the database column organization.address
1271
     *
gary's avatar
gary committed
1272
     * @return the value of organization.address
eddie.woo's avatar
eddie.woo committed
1273 1274 1275 1276 1277
     *
     * @mbg.generated
     */
    public String getAddress() {
        return address;
eddie.woo's avatar
eddie.woo committed
1278 1279 1280
    }

    /**
eddie.woo's avatar
eddie.woo committed
1281
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
1282
     * This method sets the value of the database column organization.address
1283
     *
gary's avatar
gary committed
1284
     * @param address the value for organization.address
eddie.woo's avatar
eddie.woo committed
1285 1286
     *
     * @mbg.generated
eddie.woo's avatar
eddie.woo committed
1287
     */
eddie.woo's avatar
eddie.woo committed
1288 1289
    public void setAddress(String address) {
        this.address = address == null ? null : address.trim();
eddie.woo's avatar
eddie.woo committed
1290 1291 1292
    }

    /**
eddie.woo's avatar
eddie.woo committed
1293
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
1294
     * This method returns the value of the database column organization.foundation_date
1295
     *
gary's avatar
gary committed
1296
     * @return the value of organization.foundation_date
eddie.woo's avatar
eddie.woo committed
1297 1298
     *
     * @mbg.generated
eddie.woo's avatar
eddie.woo committed
1299
     */
eddie.woo's avatar
eddie.woo committed
1300 1301 1302 1303 1304 1305
    public Date getFoundationDate() {
        return foundationDate;
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
1306
     * This method sets the value of the database column organization.foundation_date
1307
     *
gary's avatar
gary committed
1308
     * @param foundationDate the value for organization.foundation_date
eddie.woo's avatar
eddie.woo committed
1309 1310 1311 1312 1313 1314 1315 1316 1317
     *
     * @mbg.generated
     */
    public void setFoundationDate(Date foundationDate) {
        this.foundationDate = foundationDate;
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
1318
     * This method returns the value of the database column organization.registration_date
1319
     *
gary's avatar
gary committed
1320
     * @return the value of organization.registration_date
eddie.woo's avatar
eddie.woo committed
1321 1322 1323 1324 1325 1326 1327 1328 1329
     *
     * @mbg.generated
     */
    public Date getRegistrationDate() {
        return registrationDate;
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
1330
     * This method sets the value of the database column organization.registration_date
1331
     *
gary's avatar
gary committed
1332
     * @param registrationDate the value for organization.registration_date
eddie.woo's avatar
eddie.woo committed
1333 1334 1335 1336 1337 1338 1339 1340 1341
     *
     * @mbg.generated
     */
    public void setRegistrationDate(Date registrationDate) {
        this.registrationDate = registrationDate;
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
1342
     * This method returns the value of the database column organization.registration_location
1343
     *
gary's avatar
gary committed
1344
     * @return the value of organization.registration_location
eddie.woo's avatar
eddie.woo committed
1345 1346 1347 1348 1349 1350 1351 1352 1353
     *
     * @mbg.generated
     */
    public String getRegistrationLocation() {
        return registrationLocation;
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
1354
     * This method sets the value of the database column organization.registration_location
1355
     *
gary's avatar
gary committed
1356
     * @param registrationLocation the value for organization.registration_location
eddie.woo's avatar
eddie.woo committed
1357 1358 1359 1360 1361 1362 1363 1364 1365
     *
     * @mbg.generated
     */
    public void setRegistrationLocation(String registrationLocation) {
        this.registrationLocation = registrationLocation == null ? null : registrationLocation.trim();
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
1366
     * This method returns the value of the database column organization.registration_capital
1367
     *
gary's avatar
gary committed
1368
     * @return the value of organization.registration_capital
eddie.woo's avatar
eddie.woo committed
1369 1370 1371 1372 1373 1374 1375 1376 1377
     *
     * @mbg.generated
     */
    public String getRegistrationCapital() {
        return registrationCapital;
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
1378
     * This method sets the value of the database column organization.registration_capital
1379
     *
gary's avatar
gary committed
1380
     * @param registrationCapital the value for organization.registration_capital
eddie.woo's avatar
eddie.woo committed
1381 1382 1383 1384 1385 1386 1387 1388 1389
     *
     * @mbg.generated
     */
    public void setRegistrationCapital(String registrationCapital) {
        this.registrationCapital = registrationCapital == null ? null : registrationCapital.trim();
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
1390
     * This method returns the value of the database column organization.business_allotted_time_from
1391
     *
gary's avatar
gary committed
1392
     * @return the value of organization.business_allotted_time_from
eddie.woo's avatar
eddie.woo committed
1393 1394 1395 1396 1397 1398 1399 1400 1401
     *
     * @mbg.generated
     */
    public Date getBusinessAllottedTimeFrom() {
        return businessAllottedTimeFrom;
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
1402
     * This method sets the value of the database column organization.business_allotted_time_from
1403
     *
gary's avatar
gary committed
1404
     * @param businessAllottedTimeFrom the value for organization.business_allotted_time_from
eddie.woo's avatar
eddie.woo committed
1405 1406 1407 1408 1409 1410 1411 1412 1413
     *
     * @mbg.generated
     */
    public void setBusinessAllottedTimeFrom(Date businessAllottedTimeFrom) {
        this.businessAllottedTimeFrom = businessAllottedTimeFrom;
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
1414
     * This method returns the value of the database column organization.business_allotted_time_to
1415
     *
gary's avatar
gary committed
1416
     * @return the value of organization.business_allotted_time_to
eddie.woo's avatar
eddie.woo committed
1417 1418 1419 1420 1421 1422 1423 1424 1425
     *
     * @mbg.generated
     */
    public Date getBusinessAllottedTimeTo() {
        return businessAllottedTimeTo;
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
1426
     * This method sets the value of the database column organization.business_allotted_time_to
1427
     *
gary's avatar
gary committed
1428
     * @param businessAllottedTimeTo the value for organization.business_allotted_time_to
eddie.woo's avatar
eddie.woo committed
1429 1430 1431 1432 1433 1434 1435 1436 1437
     *
     * @mbg.generated
     */
    public void setBusinessAllottedTimeTo(Date businessAllottedTimeTo) {
        this.businessAllottedTimeTo = businessAllottedTimeTo;
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
1438
     * This method returns the value of the database column organization.legal_code
1439
     *
gary's avatar
gary committed
1440
     * @return the value of organization.legal_code
eddie.woo's avatar
eddie.woo committed
1441 1442 1443 1444 1445 1446 1447 1448 1449
     *
     * @mbg.generated
     */
    public String getLegalCode() {
        return legalCode;
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
1450
     * This method sets the value of the database column organization.legal_code
1451
     *
gary's avatar
gary committed
1452
     * @param legalCode the value for organization.legal_code
eddie.woo's avatar
eddie.woo committed
1453 1454 1455 1456 1457 1458 1459
     *
     * @mbg.generated
     */
    public void setLegalCode(String legalCode) {
        this.legalCode = legalCode == null ? null : legalCode.trim();
    }

gary's avatar
gary committed
1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483
    /**
     * This method was generated by MyBatis Generator.
     * This method returns the value of the database column organization.vehicleroutinglocation
     *
     * @return the value of organization.vehicleroutinglocation
     *
     * @mbg.generated
     */
    public String getVehicleroutinglocation() {
        return vehicleroutinglocation;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method sets the value of the database column organization.vehicleroutinglocation
     *
     * @param vehicleroutinglocation the value for organization.vehicleroutinglocation
     *
     * @mbg.generated
     */
    public void setVehicleroutinglocation(String vehicleroutinglocation) {
        this.vehicleroutinglocation = vehicleroutinglocation == null ? null : vehicleroutinglocation.trim();
    }

gary's avatar
gary committed
1484 1485 1486 1487 1488 1489 1490 1491
    /**
     * This method was generated by MyBatis Generator.
     * This method returns the value of the database column organization.business_scope
     *
     * @return the value of organization.business_scope
     *
     * @mbg.generated
     */
gary's avatar
gary committed
1492 1493 1494 1495
    public String getBusinessScope() {
        return businessScope;
    }

gary's avatar
gary committed
1496 1497 1498 1499 1500 1501 1502 1503
    /**
     * This method was generated by MyBatis Generator.
     * This method sets the value of the database column organization.business_scope
     *
     * @param businessScope the value for organization.business_scope
     *
     * @mbg.generated
     */
gary's avatar
gary committed
1504
    public void setBusinessScope(String businessScope) {
gary's avatar
gary committed
1505
        this.businessScope = businessScope == null ? null : businessScope.trim();
gary's avatar
gary committed
1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method returns the value of the database column organization.architecture_type
     *
     * @return the value of organization.architecture_type
     *
     * @mbg.generated
     */
    public String getArchitectureType() {
        return architectureType;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method sets the value of the database column organization.architecture_type
     *
     * @param architectureType the value for organization.architecture_type
     *
     * @mbg.generated
     */
    public void setArchitectureType(String architectureType) {
        this.architectureType = architectureType == null ? null : architectureType.trim();
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method returns the value of the database column organization.num_of_branches
     *
     * @return the value of organization.num_of_branches
     *
     * @mbg.generated
     */
1540
    public Integer getNumOfBranches() {
gary's avatar
gary committed
1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551
        return numOfBranches;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method sets the value of the database column organization.num_of_branches
     *
     * @param numOfBranches the value for organization.num_of_branches
     *
     * @mbg.generated
     */
1552
    public void setNumOfBranches(Integer numOfBranches) {
gary's avatar
gary committed
1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605
        this.numOfBranches = numOfBranches;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method returns the value of the database column organization.api_update_flag
     *
     * @return the value of organization.api_update_flag
     *
     * @mbg.generated
     */
    public Boolean getApiUpdateFlag() {
        return apiUpdateFlag;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method sets the value of the database column organization.api_update_flag
     *
     * @param apiUpdateFlag the value for organization.api_update_flag
     *
     * @mbg.generated
     */
    public void setApiUpdateFlag(Boolean apiUpdateFlag) {
        this.apiUpdateFlag = apiUpdateFlag;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method returns the value of the database column organization.effec_time_of_general_taxpayers
     *
     * @return the value of organization.effec_time_of_general_taxpayers
     *
     * @mbg.generated
     */
    public Date getEffecTimeOfGeneralTaxpayers() {
        return effecTimeOfGeneralTaxpayers;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method sets the value of the database column organization.effec_time_of_general_taxpayers
     *
     * @param effecTimeOfGeneralTaxpayers the value for organization.effec_time_of_general_taxpayers
     *
     * @mbg.generated
     */
    public void setEffecTimeOfGeneralTaxpayers(Date effecTimeOfGeneralTaxpayers) {
        this.effecTimeOfGeneralTaxpayers = effecTimeOfGeneralTaxpayers;
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
1606
     * This method returns the value of the database column organization.registration_location_en
gary's avatar
gary committed
1607
     *
gary's avatar
gary committed
1608
     * @return the value of organization.registration_location_en
gary's avatar
gary committed
1609 1610 1611
     *
     * @mbg.generated
     */
gary's avatar
gary committed
1612 1613
    public String getRegistrationLocationEn() {
        return registrationLocationEn;
gary's avatar
gary committed
1614 1615 1616 1617
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
1618
     * This method sets the value of the database column organization.registration_location_en
gary's avatar
gary committed
1619
     *
gary's avatar
gary committed
1620
     * @param registrationLocationEn the value for organization.registration_location_en
gary's avatar
gary committed
1621 1622 1623
     *
     * @mbg.generated
     */
gary's avatar
gary committed
1624 1625
    public void setRegistrationLocationEn(String registrationLocationEn) {
        this.registrationLocationEn = registrationLocationEn == null ? null : registrationLocationEn.trim();
gary's avatar
gary committed
1626 1627 1628 1629
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
1630
     * This method returns the value of the database column organization.paid_in_capital
gary's avatar
gary committed
1631
     *
gary's avatar
gary committed
1632
     * @return the value of organization.paid_in_capital
gary's avatar
gary committed
1633 1634 1635
     *
     * @mbg.generated
     */
gary's avatar
gary committed
1636 1637
    public String getPaidInCapital() {
        return paidInCapital;
gary's avatar
gary committed
1638 1639 1640 1641
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
1642
     * This method sets the value of the database column organization.paid_in_capital
gary's avatar
gary committed
1643
     *
gary's avatar
gary committed
1644
     * @param paidInCapital the value for organization.paid_in_capital
gary's avatar
gary committed
1645 1646 1647
     *
     * @mbg.generated
     */
gary's avatar
gary committed
1648 1649
    public void setPaidInCapital(String paidInCapital) {
        this.paidInCapital = paidInCapital == null ? null : paidInCapital.trim();
gary's avatar
gary committed
1650 1651 1652 1653
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
1654
     * This method returns the value of the database column organization.general_tax_payer_effective_time
gary's avatar
gary committed
1655
     *
gary's avatar
gary committed
1656
     * @return the value of organization.general_tax_payer_effective_time
gary's avatar
gary committed
1657 1658 1659
     *
     * @mbg.generated
     */
gary's avatar
gary committed
1660 1661
    public Date getGeneralTaxPayerEffectiveTime() {
        return generalTaxPayerEffectiveTime;
gary's avatar
gary committed
1662 1663 1664 1665
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
1666
     * This method sets the value of the database column organization.general_tax_payer_effective_time
gary's avatar
gary committed
1667
     *
gary's avatar
gary committed
1668
     * @param generalTaxPayerEffectiveTime the value for organization.general_tax_payer_effective_time
gary's avatar
gary committed
1669 1670 1671
     *
     * @mbg.generated
     */
gary's avatar
gary committed
1672 1673
    public void setGeneralTaxPayerEffectiveTime(Date generalTaxPayerEffectiveTime) {
        this.generalTaxPayerEffectiveTime = generalTaxPayerEffectiveTime;
gary's avatar
gary committed
1674 1675 1676 1677
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
1678
     * This method returns the value of the database column organization.oversea
gary's avatar
gary committed
1679
     *
gary's avatar
gary committed
1680
     * @return the value of organization.oversea
gary's avatar
gary committed
1681 1682 1683
     *
     * @mbg.generated
     */
gary's avatar
gary committed
1684 1685
    public Boolean getOversea() {
        return oversea;
gary's avatar
gary committed
1686 1687 1688 1689
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
1690
     * This method sets the value of the database column organization.oversea
gary's avatar
gary committed
1691
     *
gary's avatar
gary committed
1692
     * @param oversea the value for organization.oversea
gary's avatar
gary committed
1693 1694 1695
     *
     * @mbg.generated
     */
gary's avatar
gary committed
1696 1697
    public void setOversea(Boolean oversea) {
        this.oversea = oversea;
gary's avatar
gary committed
1698 1699 1700 1701
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
1702
     * This method returns the value of the database column organization.reg_status
gary's avatar
gary committed
1703
     *
gary's avatar
gary committed
1704
     * @return the value of organization.reg_status
gary's avatar
gary committed
1705 1706 1707
     *
     * @mbg.generated
     */
gary's avatar
gary committed
1708 1709
    public String getRegStatus() {
        return regStatus;
gary's avatar
gary committed
1710 1711 1712 1713
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
1714
     * This method sets the value of the database column organization.reg_status
gary's avatar
gary committed
1715
     *
gary's avatar
gary committed
1716
     * @param regStatus the value for organization.reg_status
gary's avatar
gary committed
1717 1718 1719
     *
     * @mbg.generated
     */
gary's avatar
gary committed
1720 1721
    public void setRegStatus(String regStatus) {
        this.regStatus = regStatus == null ? null : regStatus.trim();
gary's avatar
gary committed
1722 1723
    }

gary's avatar
gary committed
1724 1725
    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
1726
     * This method returns the value of the database column organization.national_economic_industry
gary's avatar
gary committed
1727
     *
gary's avatar
gary committed
1728
     * @return the value of organization.national_economic_industry
gary's avatar
gary committed
1729 1730 1731
     *
     * @mbg.generated
     */
gary's avatar
gary committed
1732 1733
    public String getNationalEconomicIndustry() {
        return nationalEconomicIndustry;
gary's avatar
gary committed
1734 1735
    }

gary's avatar
gary committed
1736 1737
    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
1738
     * This method sets the value of the database column organization.national_economic_industry
gary's avatar
gary committed
1739
     *
gary's avatar
gary committed
1740
     * @param nationalEconomicIndustry the value for organization.national_economic_industry
gary's avatar
gary committed
1741 1742 1743
     *
     * @mbg.generated
     */
gary's avatar
gary committed
1744 1745
    public void setNationalEconomicIndustry(String nationalEconomicIndustry) {
        this.nationalEconomicIndustry = nationalEconomicIndustry == null ? null : nationalEconomicIndustry.trim();
gary's avatar
gary committed
1746 1747
    }

gary's avatar
gary committed
1748 1749
    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
1750
     * This method returns the value of the database column organization.engage_national_prohibit_industry
gary's avatar
gary committed
1751
     *
gary's avatar
gary committed
1752
     * @return the value of organization.engage_national_prohibit_industry
gary's avatar
gary committed
1753 1754 1755
     *
     * @mbg.generated
     */
gary's avatar
gary committed
1756 1757
    public Boolean getEngageNationalProhibitIndustry() {
        return engageNationalProhibitIndustry;
gary's avatar
gary committed
1758 1759
    }

gary's avatar
gary committed
1760 1761
    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
1762
     * This method sets the value of the database column organization.engage_national_prohibit_industry
gary's avatar
gary committed
1763
     *
gary's avatar
gary committed
1764
     * @param engageNationalProhibitIndustry the value for organization.engage_national_prohibit_industry
gary's avatar
gary committed
1765 1766 1767
     *
     * @mbg.generated
     */
gary's avatar
gary committed
1768 1769
    public void setEngageNationalProhibitIndustry(Boolean engageNationalProhibitIndustry) {
        this.engageNationalProhibitIndustry = engageNationalProhibitIndustry;
gary's avatar
gary committed
1770 1771
    }

gary's avatar
gary committed
1772 1773 1774 1775 1776 1777 1778 1779 1780 1781
    /**
     * This method was generated by MyBatis Generator.
     * This method returns the value of the database column organization.logout_time
     *
     * @return the value of organization.logout_time
     *
     * @mbg.generated
     */
    public Date getLogoutTime() {
        return logoutTime;
gary's avatar
gary committed
1782 1783
    }

gary's avatar
gary committed
1784 1785 1786 1787 1788 1789 1790 1791 1792 1793
    /**
     * This method was generated by MyBatis Generator.
     * This method sets the value of the database column organization.logout_time
     *
     * @param logoutTime the value for organization.logout_time
     *
     * @mbg.generated
     */
    public void setLogoutTime(Date logoutTime) {
        this.logoutTime = logoutTime;
gary's avatar
gary committed
1794 1795
    }

gary's avatar
gary committed
1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818
    /**
     * This method was generated by MyBatis Generator.
     * This method returns the value of the database column organization.enterprise_account_code
     *
     * @return the value of organization.enterprise_account_code
     *
     * @mbg.generated
     */
    public String getEnterpriseAccountCode() {
        return enterpriseAccountCode;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method sets the value of the database column organization.enterprise_account_code
     *
     * @param enterpriseAccountCode the value for organization.enterprise_account_code
     *
     * @mbg.generated
     */
    public void setEnterpriseAccountCode(String enterpriseAccountCode) {
        this.enterpriseAccountCode = enterpriseAccountCode == null ? null : enterpriseAccountCode.trim();
    }
gary's avatar
gary committed
1819

1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914
    /**
     * This method was generated by MyBatis Generator.
     * This method returns the value of the database column organization.enterprise_account_name
     *
     * @return the value of organization.enterprise_account_name
     *
     * @mbg.generated
     */
    public String getEnterpriseAccountName() {
        return enterpriseAccountName;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method sets the value of the database column organization.enterprise_account_name
     *
     * @param enterpriseAccountName the value for organization.enterprise_account_name
     *
     * @mbg.generated
     */
    public void setEnterpriseAccountName(String enterpriseAccountName) {
        this.enterpriseAccountName = enterpriseAccountName == null ? null : enterpriseAccountName.trim();
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method returns the value of the database column organization.currency_code
     *
     * @return the value of organization.currency_code
     *
     * @mbg.generated
     */
    public String getCurrencyCode() {
        return currencyCode;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method sets the value of the database column organization.currency_code
     *
     * @param currencyCode the value for organization.currency_code
     *
     * @mbg.generated
     */
    public void setCurrencyCode(String currencyCode) {
        this.currencyCode = currencyCode == null ? null : currencyCode.trim();
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method returns the value of the database column organization.legal_entity
     *
     * @return the value of organization.legal_entity
     *
     * @mbg.generated
     */
    public String getLegalEntity() {
        return legalEntity;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method sets the value of the database column organization.legal_entity
     *
     * @param legalEntity the value for organization.legal_entity
     *
     * @mbg.generated
     */
    public void setLegalEntity(String legalEntity) {
        this.legalEntity = legalEntity == null ? null : legalEntity.trim();
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method returns the value of the database column organization.ps_code
     *
     * @return the value of organization.ps_code
     *
     * @mbg.generated
     */
    public String getPsCode() {
        return psCode;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method sets the value of the database column organization.ps_code
     *
     * @param psCode the value for organization.ps_code
     *
     * @mbg.generated
     */
    public void setPsCode(String psCode) {
        this.psCode = psCode == null ? null : psCode.trim();
    }
gary's avatar
gary committed
1915

gary's avatar
gary committed
1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939
    /**
     * This method was generated by MyBatis Generator.
     * This method returns the value of the database column organization.country
     *
     * @return the value of organization.country
     *
     * @mbg.generated
     */
    public String getCountry() {
        return country;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method sets the value of the database column organization.country
     *
     * @param country the value for organization.country
     *
     * @mbg.generated
     */
    public void setCountry(String country) {
        this.country = country == null ? null : country.trim();
    }

gary's avatar
gary committed
1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951
    public Area getArea() {
        return area;
    }

    public void setArea(Area area) {
        this.area = area;
    }

    public BusinessUnit getBusinessUnit() {
        return businessUnit;
    }

gary's avatar
gary committed
1952 1953
    public void setBusinessUnit(BusinessUnit businessUnit) {
        this.businessUnit = businessUnit;
gary's avatar
gary committed
1954 1955
    }

eddie.woo's avatar
eddie.woo committed
1956 1957
    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
1958
     * This method corresponds to the database table organization
eddie.woo's avatar
eddie.woo committed
1959 1960 1961 1962 1963 1964 1965 1966 1967
     *
     * @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
1968
        sb.append(", id=").append(id);
eddie.woo's avatar
eddie.woo committed
1969 1970 1971
        sb.append(", clientCode=").append(clientCode);
        sb.append(", name=").append(name);
        sb.append(", code=").append(code);
neo's avatar
neo committed
1972
        sb.append(", parentId=").append(parentId);
eddie.woo's avatar
eddie.woo committed
1973
        sb.append(", taxPayerNumber=").append(taxPayerNumber);
neo's avatar
neo committed
1974 1975 1976 1977
        sb.append(", regionId=").append(regionId);
        sb.append(", structureId=").append(structureId);
        sb.append(", industryId=").append(industryId);
        sb.append(", businessUnitId=").append(businessUnitId);
eddie.woo's avatar
eddie.woo committed
1978 1979 1980 1981
        sb.append(", isActive=").append(isActive);
        sb.append(", pLevel=").append(pLevel);
        sb.append(", createTime=").append(createTime);
        sb.append(", updateTime=").append(updateTime);
neo's avatar
neo committed
1982
        sb.append(", areaId=").append(areaId);
eddie.woo's avatar
eddie.woo committed
1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993
        sb.append(", englishName=").append(englishName);
        sb.append(", abbreviation=").append(abbreviation);
        sb.append(", invoiceType=").append(invoiceType);
        sb.append(", legalPersonName=").append(legalPersonName);
        sb.append(", manufactureAddress=").append(manufactureAddress);
        sb.append(", registerAddress=").append(registerAddress);
        sb.append(", bankAccountName=").append(bankAccountName);
        sb.append(", bankAccountNumber=").append(bankAccountNumber);
        sb.append(", phoneNumber=").append(phoneNumber);
        sb.append(", registrationType=").append(registrationType);
        sb.append(", remark=").append(remark);
gary's avatar
gary committed
1994
        sb.append(", vehicleRoutingLocation=").append(vehicleRoutingLocation);
eddie.woo's avatar
eddie.woo committed
1995 1996 1997 1998 1999 2000 2001 2002 2003
        sb.append(", ratepayer=").append(ratepayer);
        sb.append(", address=").append(address);
        sb.append(", foundationDate=").append(foundationDate);
        sb.append(", registrationDate=").append(registrationDate);
        sb.append(", registrationLocation=").append(registrationLocation);
        sb.append(", registrationCapital=").append(registrationCapital);
        sb.append(", businessAllottedTimeFrom=").append(businessAllottedTimeFrom);
        sb.append(", businessAllottedTimeTo=").append(businessAllottedTimeTo);
        sb.append(", legalCode=").append(legalCode);
gary's avatar
gary committed
2004 2005 2006 2007 2008 2009 2010 2011
        sb.append(", vehicleroutinglocation=").append(vehicleroutinglocation);
        sb.append(", businessScope=").append(businessScope);
        sb.append(", architectureType=").append(architectureType);
        sb.append(", numOfBranches=").append(numOfBranches);
        sb.append(", apiUpdateFlag=").append(apiUpdateFlag);
        sb.append(", effecTimeOfGeneralTaxpayers=").append(effecTimeOfGeneralTaxpayers);
        sb.append(", registrationLocationEn=").append(registrationLocationEn);
        sb.append(", paidInCapital=").append(paidInCapital);
gary's avatar
gary committed
2012
        sb.append(", generalTaxPayerEffectiveTime=").append(generalTaxPayerEffectiveTime);
gary's avatar
gary committed
2013 2014 2015 2016 2017
        sb.append(", oversea=").append(oversea);
        sb.append(", regStatus=").append(regStatus);
        sb.append(", nationalEconomicIndustry=").append(nationalEconomicIndustry);
        sb.append(", engageNationalProhibitIndustry=").append(engageNationalProhibitIndustry);
        sb.append(", logoutTime=").append(logoutTime);
gary's avatar
gary committed
2018
        sb.append(", enterpriseAccountCode=").append(enterpriseAccountCode);
2019 2020 2021 2022
        sb.append(", enterpriseAccountName=").append(enterpriseAccountName);
        sb.append(", currencyCode=").append(currencyCode);
        sb.append(", legalEntity=").append(legalEntity);
        sb.append(", psCode=").append(psCode);
gary's avatar
gary committed
2023
        sb.append(", country=").append(country);
eddie.woo's avatar
eddie.woo committed
2024 2025 2026 2027
        sb.append("]");
        return sb.toString();
    }
}