OperationLogEntryLog.java 20.5 KB
Newer Older
kevin's avatar
#  
kevin committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112
package pwc.taxtech.atms.entity;

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

/**
 *
 * This class was generated by MyBatis Generator.
 * This class corresponds to the database table operation_log_entry_log
 *
 * @mbg.generated do_not_delete_during_merge
 */
public class OperationLogEntryLog extends BaseEntity implements Serializable {
    /**
     *
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column operation_log_entry_log.my_id
     *
     * @mbg.generated
     */
    private Long myId;

    /**
     *
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column operation_log_entry_log.organization_id
     *
     * @mbg.generated
     */
    private String organizationId;

    /**
     *
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column operation_log_entry_log.account_period
     *
     * @mbg.generated
     */
    private String accountPeriod;

    /**
     *
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column operation_log_entry_log.accounted_dr
     *
     * @mbg.generated
     */
    private Long accountedDr;

    /**
     *
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column operation_log_entry_log.accounted_cr
     *
     * @mbg.generated
     */
    private Long accountedCr;

    /**
     *
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column operation_log_entry_log.accounting_date
     *
     * @mbg.generated
     */
    private Date accountingDate;

    /**
     *
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column operation_log_entry_log.approval_status
     *
     * @mbg.generated
     */
    private String approvalStatus;

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

    /**
     *
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column operation_log_entry_log.id
     *
     * @mbg.generated
     */
    private Long id;

    /**
     *
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column operation_log_entry_log.period
     *
     * @mbg.generated
     */
    private Integer period;

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

kevin's avatar
kevin committed
113 114 115 116 117 118 119 120 121
    /**
     *
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column operation_log_entry_log.subject_code
     *
     * @mbg.generated
     */
    private String subjectCode;

kevin's avatar
#  
kevin committed
122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156
    /**
     *
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column operation_log_entry_log.subject_name
     *
     * @mbg.generated
     */
    private String subjectName;

    /**
     *
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column operation_log_entry_log.update_time
     *
     * @mbg.generated
     */
    private Date updateTime;

    /**
     *
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column operation_log_entry_log.voucher_num
     *
     * @mbg.generated
     */
    private String voucherNum;

    /**
     *
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column operation_log_entry_log.org_code
     *
     * @mbg.generated
     */
    private String orgCode;
kevin's avatar
#  
kevin committed
157

kevin's avatar
kevin committed
158
    /**
kevin's avatar
#  
kevin committed
159 160 161 162 163 164
     *
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column operation_log_entry_log.create_time
     *
     * @mbg.generated
     */
kevin's avatar
kevin committed
165
    private Date createTime;
kevin's avatar
#  
kevin committed
166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186

    /**
     *
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column operation_log_entry_log.create_by
     *
     * @mbg.generated
     */
    private String createBy;

    /**
     *
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column operation_log_entry_log.update_by
     *
     * @mbg.generated
     */
    private String updateBy;

    /**
     *
kevin's avatar
kevin committed
187 188
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column operation_log_entry_log.operate
kevin's avatar
#  
kevin committed
189 190 191
     *
     * @mbg.generated
     */
kevin's avatar
kevin committed
192
    private String operate;
kevin's avatar
#  
kevin committed
193 194

    /**
kevin's avatar
kevin committed
195 196
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database table operation_log_entry_log
kevin's avatar
#  
kevin committed
197 198 199
     *
     * @mbg.generated
     */
kevin's avatar
kevin committed
200
    private static final long serialVersionUID = 1L;
kevin's avatar
#  
kevin committed
201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 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 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465

    /**
     * This method was generated by MyBatis Generator.
     * This method returns the value of the database column operation_log_entry_log.my_id
     *
     * @return the value of operation_log_entry_log.my_id
     *
     * @mbg.generated
     */
    public Long getMyId() {
        return myId;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method sets the value of the database column operation_log_entry_log.my_id
     *
     * @param myId the value for operation_log_entry_log.my_id
     *
     * @mbg.generated
     */
    public void setMyId(Long myId) {
        this.myId = myId;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method returns the value of the database column operation_log_entry_log.organization_id
     *
     * @return the value of operation_log_entry_log.organization_id
     *
     * @mbg.generated
     */
    public String getOrganizationId() {
        return organizationId;
    }

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

    /**
     * This method was generated by MyBatis Generator.
     * This method returns the value of the database column operation_log_entry_log.account_period
     *
     * @return the value of operation_log_entry_log.account_period
     *
     * @mbg.generated
     */
    public String getAccountPeriod() {
        return accountPeriod;
    }

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

    /**
     * This method was generated by MyBatis Generator.
     * This method returns the value of the database column operation_log_entry_log.accounted_dr
     *
     * @return the value of operation_log_entry_log.accounted_dr
     *
     * @mbg.generated
     */
    public Long getAccountedDr() {
        return accountedDr;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method sets the value of the database column operation_log_entry_log.accounted_dr
     *
     * @param accountedDr the value for operation_log_entry_log.accounted_dr
     *
     * @mbg.generated
     */
    public void setAccountedDr(Long accountedDr) {
        this.accountedDr = accountedDr;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method returns the value of the database column operation_log_entry_log.accounted_cr
     *
     * @return the value of operation_log_entry_log.accounted_cr
     *
     * @mbg.generated
     */
    public Long getAccountedCr() {
        return accountedCr;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method sets the value of the database column operation_log_entry_log.accounted_cr
     *
     * @param accountedCr the value for operation_log_entry_log.accounted_cr
     *
     * @mbg.generated
     */
    public void setAccountedCr(Long accountedCr) {
        this.accountedCr = accountedCr;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method returns the value of the database column operation_log_entry_log.accounting_date
     *
     * @return the value of operation_log_entry_log.accounting_date
     *
     * @mbg.generated
     */
    public Date getAccountingDate() {
        return accountingDate;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method sets the value of the database column operation_log_entry_log.accounting_date
     *
     * @param accountingDate the value for operation_log_entry_log.accounting_date
     *
     * @mbg.generated
     */
    public void setAccountingDate(Date accountingDate) {
        this.accountingDate = accountingDate;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method returns the value of the database column operation_log_entry_log.approval_status
     *
     * @return the value of operation_log_entry_log.approval_status
     *
     * @mbg.generated
     */
    public String getApprovalStatus() {
        return approvalStatus;
    }

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

    /**
     * This method was generated by MyBatis Generator.
     * This method returns the value of the database column operation_log_entry_log.category
     *
     * @return the value of operation_log_entry_log.category
     *
     * @mbg.generated
     */
    public String getCategory() {
        return category;
    }

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

    /**
     * This method was generated by MyBatis Generator.
     * This method returns the value of the database column operation_log_entry_log.id
     *
     * @return the value of operation_log_entry_log.id
     *
     * @mbg.generated
     */
    public Long getId() {
        return id;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method sets the value of the database column operation_log_entry_log.id
     *
     * @param id the value for operation_log_entry_log.id
     *
     * @mbg.generated
     */
    public void setId(Long id) {
        this.id = id;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method returns the value of the database column operation_log_entry_log.period
     *
     * @return the value of operation_log_entry_log.period
     *
     * @mbg.generated
     */
    public Integer getPeriod() {
        return period;
    }

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

    /**
     * This method was generated by MyBatis Generator.
     * This method returns the value of the database column operation_log_entry_log.source
     *
     * @return the value of operation_log_entry_log.source
     *
     * @mbg.generated
     */
    public String getSource() {
        return source;
    }

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

kevin's avatar
kevin committed
466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489
    /**
     * This method was generated by MyBatis Generator.
     * This method returns the value of the database column operation_log_entry_log.subject_code
     *
     * @return the value of operation_log_entry_log.subject_code
     *
     * @mbg.generated
     */
    public String getSubjectCode() {
        return subjectCode;
    }

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

kevin's avatar
#  
kevin committed
490 491 492 493 494 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 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593
    /**
     * This method was generated by MyBatis Generator.
     * This method returns the value of the database column operation_log_entry_log.subject_name
     *
     * @return the value of operation_log_entry_log.subject_name
     *
     * @mbg.generated
     */
    public String getSubjectName() {
        return subjectName;
    }

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

    /**
     * This method was generated by MyBatis Generator.
     * This method returns the value of the database column operation_log_entry_log.update_time
     *
     * @return the value of operation_log_entry_log.update_time
     *
     * @mbg.generated
     */
    public Date getUpdateTime() {
        return updateTime;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method sets the value of the database column operation_log_entry_log.update_time
     *
     * @param updateTime the value for operation_log_entry_log.update_time
     *
     * @mbg.generated
     */
    public void setUpdateTime(Date updateTime) {
        this.updateTime = updateTime;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method returns the value of the database column operation_log_entry_log.voucher_num
     *
     * @return the value of operation_log_entry_log.voucher_num
     *
     * @mbg.generated
     */
    public String getVoucherNum() {
        return voucherNum;
    }

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

    /**
     * This method was generated by MyBatis Generator.
     * This method returns the value of the database column operation_log_entry_log.org_code
     *
     * @return the value of operation_log_entry_log.org_code
     *
     * @mbg.generated
     */
    public String getOrgCode() {
        return orgCode;
    }

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

    /**
     * This method was generated by MyBatis Generator.
     * This method returns the value of the database column operation_log_entry_log.create_time
     *
     * @return the value of operation_log_entry_log.create_time
     *
     * @mbg.generated
     */
kevin's avatar
kevin committed
594 595 596
    public Date getCreateTime() {
        return createTime;
    }
kevin's avatar
#  
kevin committed
597 598 599 600 601 602 603 604 605

    /**
     * This method was generated by MyBatis Generator.
     * This method sets the value of the database column operation_log_entry_log.create_time
     *
     * @param createTime the value for operation_log_entry_log.create_time
     *
     * @mbg.generated
     */
kevin's avatar
kevin committed
606 607 608
    public void setCreateTime(Date createTime) {
        this.createTime = createTime;
    }
kevin's avatar
#  
kevin committed
609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657

    /**
     * This method was generated by MyBatis Generator.
     * This method returns the value of the database column operation_log_entry_log.create_by
     *
     * @return the value of operation_log_entry_log.create_by
     *
     * @mbg.generated
     */
    public String getCreateBy() {
        return createBy;
    }

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

    /**
     * This method was generated by MyBatis Generator.
     * This method returns the value of the database column operation_log_entry_log.update_by
     *
     * @return the value of operation_log_entry_log.update_by
     *
     * @mbg.generated
     */
    public String getUpdateBy() {
        return updateBy;
    }

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

kevin's avatar
kevin committed
658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681
    /**
     * This method was generated by MyBatis Generator.
     * This method returns the value of the database column operation_log_entry_log.operate
     *
     * @return the value of operation_log_entry_log.operate
     *
     * @mbg.generated
     */
    public String getOperate() {
        return operate;
    }

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

kevin's avatar
#  
kevin committed
682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704
    /**
     * This method was generated by MyBatis Generator.
     * This method corresponds to the database table operation_log_entry_log
     *
     * @mbg.generated
     */
    @Override
    public String toString() {
        StringBuilder sb = new StringBuilder();
        sb.append(getClass().getSimpleName());
        sb.append(" [");
        sb.append("Hash = ").append(hashCode());
        sb.append(", myId=").append(myId);
        sb.append(", organizationId=").append(organizationId);
        sb.append(", accountPeriod=").append(accountPeriod);
        sb.append(", accountedDr=").append(accountedDr);
        sb.append(", accountedCr=").append(accountedCr);
        sb.append(", accountingDate=").append(accountingDate);
        sb.append(", approvalStatus=").append(approvalStatus);
        sb.append(", category=").append(category);
        sb.append(", id=").append(id);
        sb.append(", period=").append(period);
        sb.append(", source=").append(source);
kevin's avatar
kevin committed
705
        sb.append(", subjectCode=").append(subjectCode);
kevin's avatar
#  
kevin committed
706 707 708 709
        sb.append(", subjectName=").append(subjectName);
        sb.append(", updateTime=").append(updateTime);
        sb.append(", voucherNum=").append(voucherNum);
        sb.append(", orgCode=").append(orgCode);
kevin's avatar
kevin committed
710
        sb.append(", createTime=").append(createTime);
kevin's avatar
#  
kevin committed
711 712
        sb.append(", createBy=").append(createBy);
        sb.append(", updateBy=").append(updateBy);
kevin's avatar
kevin committed
713
        sb.append(", operate=").append(operate);
kevin's avatar
#  
kevin committed
714 715 716 717
        sb.append("]");
        return sb.toString();
    }
}