EnterpriseAccountSetOrg.java 6.43 KB
Newer Older
1
package pwc.taxtech.atms.entity;
eddie.woo's avatar
eddie.woo committed
2 3 4 5 6 7 8

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

/**
 *
 * This class was generated by MyBatis Generator.
gary's avatar
gary committed
9
 * This class corresponds to the database table enterprise_account_set_org
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 EnterpriseAccountSetOrg extends BaseEntity implements Serializable {
eddie.woo's avatar
eddie.woo committed
14 15 16
    /**
     *
     * This field was generated by MyBatis Generator.
gary's avatar
gary committed
17
     * This field corresponds to the database column enterprise_account_set_org.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 24 25

    /**
     *
     * This field was generated by MyBatis Generator.
gary's avatar
gary committed
26
     * This field corresponds to the database column enterprise_account_set_org.enterprise_account_set_id
eddie.woo's avatar
eddie.woo committed
27 28 29
     *
     * @mbg.generated
     */
neo's avatar
neo committed
30
    private String enterpriseAccountSetId;
eddie.woo's avatar
eddie.woo committed
31 32 33 34

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

    /**
     *
     * This field was generated by MyBatis Generator.
gary's avatar
gary committed
44
     * This field corresponds to the database column enterprise_account_set_org.effective_date
eddie.woo's avatar
eddie.woo committed
45 46 47 48 49 50 51 52
     *
     * @mbg.generated
     */
    private Date effectiveDate;

    /**
     *
     * This field was generated by MyBatis Generator.
gary's avatar
gary committed
53
     * This field corresponds to the database column enterprise_account_set_org.expired_date
eddie.woo's avatar
eddie.woo committed
54 55 56 57 58
     *
     * @mbg.generated
     */
    private Date expiredDate;

59 60
    private Organization organization;

eddie.woo's avatar
eddie.woo committed
61 62
    /**
     * This field was generated by MyBatis Generator.
gary's avatar
gary committed
63
     * This field corresponds to the database table enterprise_account_set_org
eddie.woo's avatar
eddie.woo committed
64 65 66 67 68 69 70
     *
     * @mbg.generated
     */
    private static final long serialVersionUID = 1L;

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
71
     * This method returns the value of the database column enterprise_account_set_org.id
eddie.woo's avatar
eddie.woo committed
72
     *
gary's avatar
gary committed
73
     * @return the value of enterprise_account_set_org.id
eddie.woo's avatar
eddie.woo committed
74 75 76
     *
     * @mbg.generated
     */
neo's avatar
neo committed
77 78
    public String getId() {
        return id;
eddie.woo's avatar
eddie.woo committed
79 80 81 82
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
83
     * This method sets the value of the database column enterprise_account_set_org.id
eddie.woo's avatar
eddie.woo committed
84
     *
gary's avatar
gary committed
85
     * @param id the value for enterprise_account_set_org.id
eddie.woo's avatar
eddie.woo committed
86 87 88
     *
     * @mbg.generated
     */
neo's avatar
neo committed
89 90
    public void setId(String id) {
        this.id = id == null ? null : id.trim();
eddie.woo's avatar
eddie.woo committed
91 92 93 94
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
95
     * This method returns the value of the database column enterprise_account_set_org.enterprise_account_set_id
eddie.woo's avatar
eddie.woo committed
96
     *
gary's avatar
gary committed
97
     * @return the value of enterprise_account_set_org.enterprise_account_set_id
eddie.woo's avatar
eddie.woo committed
98 99 100
     *
     * @mbg.generated
     */
neo's avatar
neo committed
101 102
    public String getEnterpriseAccountSetId() {
        return enterpriseAccountSetId;
eddie.woo's avatar
eddie.woo committed
103 104 105 106
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
107
     * This method sets the value of the database column enterprise_account_set_org.enterprise_account_set_id
eddie.woo's avatar
eddie.woo committed
108
     *
gary's avatar
gary committed
109
     * @param enterpriseAccountSetId the value for enterprise_account_set_org.enterprise_account_set_id
eddie.woo's avatar
eddie.woo committed
110 111 112
     *
     * @mbg.generated
     */
neo's avatar
neo committed
113 114
    public void setEnterpriseAccountSetId(String enterpriseAccountSetId) {
        this.enterpriseAccountSetId = enterpriseAccountSetId == null ? null : enterpriseAccountSetId.trim();
eddie.woo's avatar
eddie.woo committed
115 116 117 118
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
119
     * This method returns the value of the database column enterprise_account_set_org.organization_id
eddie.woo's avatar
eddie.woo committed
120
     *
gary's avatar
gary committed
121
     * @return the value of enterprise_account_set_org.organization_id
eddie.woo's avatar
eddie.woo committed
122 123 124
     *
     * @mbg.generated
     */
neo's avatar
neo committed
125 126
    public String getOrganizationId() {
        return organizationId;
eddie.woo's avatar
eddie.woo committed
127 128 129 130
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
131
     * This method sets the value of the database column enterprise_account_set_org.organization_id
eddie.woo's avatar
eddie.woo committed
132
     *
gary's avatar
gary committed
133
     * @param organizationId the value for enterprise_account_set_org.organization_id
eddie.woo's avatar
eddie.woo committed
134 135 136
     *
     * @mbg.generated
     */
neo's avatar
neo committed
137 138
    public void setOrganizationId(String organizationId) {
        this.organizationId = organizationId == null ? null : organizationId.trim();
eddie.woo's avatar
eddie.woo committed
139 140 141 142
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
143
     * This method returns the value of the database column enterprise_account_set_org.effective_date
eddie.woo's avatar
eddie.woo committed
144
     *
gary's avatar
gary committed
145
     * @return the value of enterprise_account_set_org.effective_date
eddie.woo's avatar
eddie.woo committed
146 147 148 149 150 151 152 153 154
     *
     * @mbg.generated
     */
    public Date getEffectiveDate() {
        return effectiveDate;
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
155
     * This method sets the value of the database column enterprise_account_set_org.effective_date
eddie.woo's avatar
eddie.woo committed
156
     *
gary's avatar
gary committed
157
     * @param effectiveDate the value for enterprise_account_set_org.effective_date
eddie.woo's avatar
eddie.woo committed
158 159 160 161 162 163 164 165 166
     *
     * @mbg.generated
     */
    public void setEffectiveDate(Date effectiveDate) {
        this.effectiveDate = effectiveDate;
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
167
     * This method returns the value of the database column enterprise_account_set_org.expired_date
eddie.woo's avatar
eddie.woo committed
168
     *
gary's avatar
gary committed
169
     * @return the value of enterprise_account_set_org.expired_date
eddie.woo's avatar
eddie.woo committed
170 171 172 173 174 175 176 177 178
     *
     * @mbg.generated
     */
    public Date getExpiredDate() {
        return expiredDate;
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
179
     * This method sets the value of the database column enterprise_account_set_org.expired_date
eddie.woo's avatar
eddie.woo committed
180
     *
gary's avatar
gary committed
181
     * @param expiredDate the value for enterprise_account_set_org.expired_date
eddie.woo's avatar
eddie.woo committed
182 183 184 185 186 187 188
     *
     * @mbg.generated
     */
    public void setExpiredDate(Date expiredDate) {
        this.expiredDate = expiredDate;
    }

189 190 191 192 193 194 195 196
    public Organization getOrganization() {
        return organization;
    }

    public void setOrganization(Organization organization) {
        this.organization = organization;
    }

eddie.woo's avatar
eddie.woo committed
197 198
    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
199
     * This method corresponds to the database table enterprise_account_set_org
eddie.woo's avatar
eddie.woo committed
200 201 202 203 204 205 206 207 208
     *
     * @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
209 210 211
        sb.append(", id=").append(id);
        sb.append(", enterpriseAccountSetId=").append(enterpriseAccountSetId);
        sb.append(", organizationId=").append(organizationId);
eddie.woo's avatar
eddie.woo committed
212 213 214 215 216 217
        sb.append(", effectiveDate=").append(effectiveDate);
        sb.append(", expiredDate=").append(expiredDate);
        sb.append("]");
        return sb.toString();
    }
}