AccountMapping.java 7.08 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 AccountMapping
eddie.woo's avatar
eddie.woo committed
9 10 11 12 13 14 15
 *
 * @mbg.generated do_not_delete_during_merge
 */
public class AccountMapping implements Serializable {
    /**
     *
     * This field was generated by MyBatis Generator.
eddie.woo's avatar
eddie.woo committed
16
     * This field corresponds to the database column AccountMapping.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 AccountMapping.EnterpriseAccountCode
eddie.woo's avatar
eddie.woo committed
26 27 28 29 30 31 32 33
     *
     * @mbg.generated
     */
    private String enterpriseAccountCode;

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

    /**
     *
     * This field was generated by MyBatis Generator.
eddie.woo's avatar
eddie.woo committed
43
     * This field corresponds to the database column AccountMapping.EnterpriseAccountSetID
eddie.woo's avatar
eddie.woo committed
44 45 46 47 48 49 50 51
     *
     * @mbg.generated
     */
    private String enterpriseAccountSetID;

    /**
     *
     * This field was generated by MyBatis Generator.
eddie.woo's avatar
eddie.woo committed
52
     * This field corresponds to the database column AccountMapping.OrganizationID
eddie.woo's avatar
eddie.woo committed
53 54 55 56 57 58 59 60
     *
     * @mbg.generated
     */
    private String organizationID;

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

    /**
     * This field was generated by MyBatis Generator.
eddie.woo's avatar
eddie.woo committed
69
     * This field corresponds to the database table AccountMapping
eddie.woo's avatar
eddie.woo committed
70 71 72 73 74 75 76
     *
     * @mbg.generated
     */
    private static final long serialVersionUID = 1L;

    /**
     * This method was generated by MyBatis Generator.
eddie.woo's avatar
eddie.woo committed
77
     * This method returns the value of the database column AccountMapping.ID
eddie.woo's avatar
eddie.woo committed
78
     *
eddie.woo's avatar
eddie.woo committed
79
     * @return the value of AccountMapping.ID
eddie.woo's avatar
eddie.woo committed
80 81 82 83 84 85 86 87 88
     *
     * @mbg.generated
     */
    public String getID() {
        return ID;
    }

    /**
     * This method was generated by MyBatis Generator.
eddie.woo's avatar
eddie.woo committed
89
     * This method sets the value of the database column AccountMapping.ID
eddie.woo's avatar
eddie.woo committed
90
     *
eddie.woo's avatar
eddie.woo committed
91
     * @param ID the value for AccountMapping.ID
eddie.woo's avatar
eddie.woo committed
92 93 94 95 96 97 98 99 100
     *
     * @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
101
     * This method returns the value of the database column AccountMapping.EnterpriseAccountCode
eddie.woo's avatar
eddie.woo committed
102
     *
eddie.woo's avatar
eddie.woo committed
103
     * @return the value of AccountMapping.EnterpriseAccountCode
eddie.woo's avatar
eddie.woo committed
104 105 106 107 108 109 110 111 112
     *
     * @mbg.generated
     */
    public String getEnterpriseAccountCode() {
        return enterpriseAccountCode;
    }

    /**
     * This method was generated by MyBatis Generator.
eddie.woo's avatar
eddie.woo committed
113
     * This method sets the value of the database column AccountMapping.EnterpriseAccountCode
eddie.woo's avatar
eddie.woo committed
114
     *
eddie.woo's avatar
eddie.woo committed
115
     * @param enterpriseAccountCode the value for AccountMapping.EnterpriseAccountCode
eddie.woo's avatar
eddie.woo committed
116 117 118 119 120 121 122 123 124
     *
     * @mbg.generated
     */
    public void setEnterpriseAccountCode(String enterpriseAccountCode) {
        this.enterpriseAccountCode = enterpriseAccountCode == null ? null : enterpriseAccountCode.trim();
    }

    /**
     * This method was generated by MyBatis Generator.
eddie.woo's avatar
eddie.woo committed
125
     * This method returns the value of the database column AccountMapping.StandardAccountCode
eddie.woo's avatar
eddie.woo committed
126
     *
eddie.woo's avatar
eddie.woo committed
127
     * @return the value of AccountMapping.StandardAccountCode
eddie.woo's avatar
eddie.woo committed
128 129 130 131 132 133 134 135 136
     *
     * @mbg.generated
     */
    public String getStandardAccountCode() {
        return standardAccountCode;
    }

    /**
     * This method was generated by MyBatis Generator.
eddie.woo's avatar
eddie.woo committed
137
     * This method sets the value of the database column AccountMapping.StandardAccountCode
eddie.woo's avatar
eddie.woo committed
138
     *
eddie.woo's avatar
eddie.woo committed
139
     * @param standardAccountCode the value for AccountMapping.StandardAccountCode
eddie.woo's avatar
eddie.woo committed
140 141 142 143 144 145 146 147 148
     *
     * @mbg.generated
     */
    public void setStandardAccountCode(String standardAccountCode) {
        this.standardAccountCode = standardAccountCode == null ? null : standardAccountCode.trim();
    }

    /**
     * This method was generated by MyBatis Generator.
eddie.woo's avatar
eddie.woo committed
149
     * This method returns the value of the database column AccountMapping.EnterpriseAccountSetID
eddie.woo's avatar
eddie.woo committed
150
     *
eddie.woo's avatar
eddie.woo committed
151
     * @return the value of AccountMapping.EnterpriseAccountSetID
eddie.woo's avatar
eddie.woo committed
152 153 154 155 156 157 158 159 160
     *
     * @mbg.generated
     */
    public String getEnterpriseAccountSetID() {
        return enterpriseAccountSetID;
    }

    /**
     * This method was generated by MyBatis Generator.
eddie.woo's avatar
eddie.woo committed
161
     * This method sets the value of the database column AccountMapping.EnterpriseAccountSetID
eddie.woo's avatar
eddie.woo committed
162
     *
eddie.woo's avatar
eddie.woo committed
163
     * @param enterpriseAccountSetID the value for AccountMapping.EnterpriseAccountSetID
eddie.woo's avatar
eddie.woo committed
164 165 166 167 168 169 170 171 172
     *
     * @mbg.generated
     */
    public void setEnterpriseAccountSetID(String enterpriseAccountSetID) {
        this.enterpriseAccountSetID = enterpriseAccountSetID == null ? null : enterpriseAccountSetID.trim();
    }

    /**
     * This method was generated by MyBatis Generator.
eddie.woo's avatar
eddie.woo committed
173
     * This method returns the value of the database column AccountMapping.OrganizationID
eddie.woo's avatar
eddie.woo committed
174
     *
eddie.woo's avatar
eddie.woo committed
175
     * @return the value of AccountMapping.OrganizationID
eddie.woo's avatar
eddie.woo committed
176 177 178 179 180 181 182 183 184
     *
     * @mbg.generated
     */
    public String getOrganizationID() {
        return organizationID;
    }

    /**
     * This method was generated by MyBatis Generator.
eddie.woo's avatar
eddie.woo committed
185
     * This method sets the value of the database column AccountMapping.OrganizationID
eddie.woo's avatar
eddie.woo committed
186
     *
eddie.woo's avatar
eddie.woo committed
187
     * @param organizationID the value for AccountMapping.OrganizationID
eddie.woo's avatar
eddie.woo committed
188 189 190 191 192 193 194 195 196
     *
     * @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
197
     * This method returns the value of the database column AccountMapping.IndustryID
eddie.woo's avatar
eddie.woo committed
198
     *
eddie.woo's avatar
eddie.woo committed
199
     * @return the value of AccountMapping.IndustryID
eddie.woo's avatar
eddie.woo committed
200 201 202 203 204 205 206 207 208
     *
     * @mbg.generated
     */
    public String getIndustryID() {
        return industryID;
    }

    /**
     * This method was generated by MyBatis Generator.
eddie.woo's avatar
eddie.woo committed
209
     * This method sets the value of the database column AccountMapping.IndustryID
eddie.woo's avatar
eddie.woo committed
210
     *
eddie.woo's avatar
eddie.woo committed
211
     * @param industryID the value for AccountMapping.IndustryID
eddie.woo's avatar
eddie.woo committed
212 213 214 215 216 217 218 219 220
     *
     * @mbg.generated
     */
    public void setIndustryID(String industryID) {
        this.industryID = industryID == null ? null : industryID.trim();
    }

    /**
     * This method was generated by MyBatis Generator.
eddie.woo's avatar
eddie.woo committed
221
     * This method corresponds to the database table AccountMapping
eddie.woo's avatar
eddie.woo committed
222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240
     *
     * @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(", enterpriseAccountCode=").append(enterpriseAccountCode);
        sb.append(", standardAccountCode=").append(standardAccountCode);
        sb.append(", enterpriseAccountSetID=").append(enterpriseAccountSetID);
        sb.append(", organizationID=").append(organizationID);
        sb.append(", industryID=").append(industryID);
        sb.append("]");
        return sb.toString();
    }
}