PeriodCellReferenceKey.java 2.87 KB
Newer Older
frank.xa.zhang's avatar
frank.xa.zhang committed
1
package pwc.taxtech.atms.vat.entity;
2 3 4 5 6 7

import java.io.Serializable;

/**
 *
 * This class was generated by MyBatis Generator.
neo's avatar
neo committed
8
 * This class corresponds to the database table TAX_PROJECT.PERIOD_CELL_REFERENCE
9 10 11 12 13 14 15
 *
 * @mbg.generated do_not_delete_during_merge
 */
public class PeriodCellReferenceKey implements Serializable {
    /**
     *
     * This field was generated by MyBatis Generator.
neo's avatar
neo committed
16
     * This field corresponds to the database column TAX_PROJECT.PERIOD_CELL_REFERENCE.PERIOD
17 18 19
     *
     * @mbg.generated
     */
neo's avatar
neo committed
20
    private Integer period;
21 22 23 24

    /**
     *
     * This field was generated by MyBatis Generator.
neo's avatar
neo committed
25
     * This field corresponds to the database column TAX_PROJECT.PERIOD_CELL_REFERENCE.ID
26 27 28
     *
     * @mbg.generated
     */
neo's avatar
neo committed
29
    private String id;
30 31 32

    /**
     * This field was generated by MyBatis Generator.
neo's avatar
neo committed
33
     * This field corresponds to the database table TAX_PROJECT.PERIOD_CELL_REFERENCE
34 35 36 37 38 39 40
     *
     * @mbg.generated
     */
    private static final long serialVersionUID = 1L;

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
41
     * This method returns the value of the database column TAX_PROJECT.PERIOD_CELL_REFERENCE.PERIOD
42
     *
neo's avatar
neo committed
43
     * @return the value of TAX_PROJECT.PERIOD_CELL_REFERENCE.PERIOD
44 45 46
     *
     * @mbg.generated
     */
neo's avatar
neo committed
47 48
    public Integer getPeriod() {
        return period;
49 50 51 52
    }

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
53
     * This method sets the value of the database column TAX_PROJECT.PERIOD_CELL_REFERENCE.PERIOD
54
     *
neo's avatar
neo committed
55
     * @param period the value for TAX_PROJECT.PERIOD_CELL_REFERENCE.PERIOD
56 57 58
     *
     * @mbg.generated
     */
neo's avatar
neo committed
59 60
    public void setPeriod(Integer period) {
        this.period = period;
61 62 63 64
    }

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
65
     * This method returns the value of the database column TAX_PROJECT.PERIOD_CELL_REFERENCE.ID
66
     *
neo's avatar
neo committed
67
     * @return the value of TAX_PROJECT.PERIOD_CELL_REFERENCE.ID
68 69 70
     *
     * @mbg.generated
     */
neo's avatar
neo committed
71 72
    public String getId() {
        return id;
73 74 75 76
    }

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
77
     * This method sets the value of the database column TAX_PROJECT.PERIOD_CELL_REFERENCE.ID
78
     *
neo's avatar
neo committed
79
     * @param id the value for TAX_PROJECT.PERIOD_CELL_REFERENCE.ID
80 81 82
     *
     * @mbg.generated
     */
neo's avatar
neo committed
83 84
    public void setId(String id) {
        this.id = id == null ? null : id.trim();
85 86 87 88
    }

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
89
     * This method corresponds to the database table TAX_PROJECT.PERIOD_CELL_REFERENCE
90 91 92 93 94 95 96 97 98 99
     *
     * @mbg.generated
     */
    @Override
    public String toString() {
        StringBuilder sb = new StringBuilder();
        sb.append(getClass().getSimpleName());
        sb.append(" [");
        sb.append("Hash = ").append(hashCode());
        sb.append(", period=").append(period);
neo's avatar
neo committed
100
        sb.append(", id=").append(id);
101 102 103 104
        sb.append("]");
        return sb.toString();
    }
}