UserDimensionValueOrg.java 4.98 KB
Newer Older
eddie.woo's avatar
eddie.woo committed
1 2 3 4 5 6 7
package pwc.taxtech.atms.entitiy;

import java.io.Serializable;

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

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

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

    /**
     *
     * This field was generated by MyBatis Generator.
eddie.woo's avatar
eddie.woo committed
43
     * This field corresponds to the database column UserDimensionValueOrg.IsHeritable
eddie.woo's avatar
eddie.woo committed
44 45 46 47 48 49 50
     *
     * @mbg.generated
     */
    private Boolean isHeritable;

    /**
     * This field was generated by MyBatis Generator.
eddie.woo's avatar
eddie.woo committed
51
     * This field corresponds to the database table UserDimensionValueOrg
eddie.woo's avatar
eddie.woo committed
52 53 54 55 56 57 58
     *
     * @mbg.generated
     */
    private static final long serialVersionUID = 1L;

    /**
     * This method was generated by MyBatis Generator.
eddie.woo's avatar
eddie.woo committed
59
     * This method returns the value of the database column UserDimensionValueOrg.ID
eddie.woo's avatar
eddie.woo committed
60
     *
eddie.woo's avatar
eddie.woo committed
61
     * @return the value of UserDimensionValueOrg.ID
eddie.woo's avatar
eddie.woo committed
62 63 64 65 66 67 68 69 70
     *
     * @mbg.generated
     */
    public String getID() {
        return ID;
    }

    /**
     * This method was generated by MyBatis Generator.
eddie.woo's avatar
eddie.woo committed
71
     * This method sets the value of the database column UserDimensionValueOrg.ID
eddie.woo's avatar
eddie.woo committed
72
     *
eddie.woo's avatar
eddie.woo committed
73
     * @param ID the value for UserDimensionValueOrg.ID
eddie.woo's avatar
eddie.woo committed
74 75 76 77 78 79 80 81 82
     *
     * @mbg.generated
     */
    public void setID(String ID) {
        this.ID = ID == null ? null : ID.trim();
    }

    /**
     * This method was generated by MyBatis Generator.
eddie.woo's avatar
eddie.woo committed
83
     * This method returns the value of the database column UserDimensionValueOrg.UserDimensionValueID
eddie.woo's avatar
eddie.woo committed
84
     *
eddie.woo's avatar
eddie.woo committed
85
     * @return the value of UserDimensionValueOrg.UserDimensionValueID
eddie.woo's avatar
eddie.woo committed
86 87 88 89 90 91 92 93 94
     *
     * @mbg.generated
     */
    public String getUserDimensionValueID() {
        return userDimensionValueID;
    }

    /**
     * This method was generated by MyBatis Generator.
eddie.woo's avatar
eddie.woo committed
95
     * This method sets the value of the database column UserDimensionValueOrg.UserDimensionValueID
eddie.woo's avatar
eddie.woo committed
96
     *
eddie.woo's avatar
eddie.woo committed
97
     * @param userDimensionValueID the value for UserDimensionValueOrg.UserDimensionValueID
eddie.woo's avatar
eddie.woo committed
98 99 100 101 102 103 104 105 106
     *
     * @mbg.generated
     */
    public void setUserDimensionValueID(String userDimensionValueID) {
        this.userDimensionValueID = userDimensionValueID == null ? null : userDimensionValueID.trim();
    }

    /**
     * This method was generated by MyBatis Generator.
eddie.woo's avatar
eddie.woo committed
107
     * This method returns the value of the database column UserDimensionValueOrg.OrganizationID
eddie.woo's avatar
eddie.woo committed
108
     *
eddie.woo's avatar
eddie.woo committed
109
     * @return the value of UserDimensionValueOrg.OrganizationID
eddie.woo's avatar
eddie.woo committed
110 111 112 113 114 115 116 117 118
     *
     * @mbg.generated
     */
    public String getOrganizationID() {
        return organizationID;
    }

    /**
     * This method was generated by MyBatis Generator.
eddie.woo's avatar
eddie.woo committed
119
     * This method sets the value of the database column UserDimensionValueOrg.OrganizationID
eddie.woo's avatar
eddie.woo committed
120
     *
eddie.woo's avatar
eddie.woo committed
121
     * @param organizationID the value for UserDimensionValueOrg.OrganizationID
eddie.woo's avatar
eddie.woo committed
122 123 124 125 126 127 128 129 130
     *
     * @mbg.generated
     */
    public void setOrganizationID(String organizationID) {
        this.organizationID = organizationID == null ? null : organizationID.trim();
    }

    /**
     * This method was generated by MyBatis Generator.
eddie.woo's avatar
eddie.woo committed
131
     * This method returns the value of the database column UserDimensionValueOrg.IsHeritable
eddie.woo's avatar
eddie.woo committed
132
     *
eddie.woo's avatar
eddie.woo committed
133
     * @return the value of UserDimensionValueOrg.IsHeritable
eddie.woo's avatar
eddie.woo committed
134 135 136 137 138 139 140 141 142
     *
     * @mbg.generated
     */
    public Boolean getIsHeritable() {
        return isHeritable;
    }

    /**
     * This method was generated by MyBatis Generator.
eddie.woo's avatar
eddie.woo committed
143
     * This method sets the value of the database column UserDimensionValueOrg.IsHeritable
eddie.woo's avatar
eddie.woo committed
144
     *
eddie.woo's avatar
eddie.woo committed
145
     * @param isHeritable the value for UserDimensionValueOrg.IsHeritable
eddie.woo's avatar
eddie.woo committed
146 147 148 149 150 151 152 153 154
     *
     * @mbg.generated
     */
    public void setIsHeritable(Boolean isHeritable) {
        this.isHeritable = isHeritable;
    }

    /**
     * This method was generated by MyBatis Generator.
eddie.woo's avatar
eddie.woo committed
155
     * This method corresponds to the database table UserDimensionValueOrg
eddie.woo's avatar
eddie.woo committed
156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172
     *
     * @mbg.generated
     */
    @Override
    public String toString() {
        StringBuilder sb = new StringBuilder();
        sb.append(getClass().getSimpleName());
        sb.append(" [");
        sb.append("Hash = ").append(hashCode());
        sb.append(", ID=").append(ID);
        sb.append(", userDimensionValueID=").append(userDimensionValueID);
        sb.append(", organizationID=").append(organizationID);
        sb.append(", isHeritable=").append(isHeritable);
        sb.append("]");
        return sb.toString();
    }
}