AssetGroupResult.java 8.33 KB
Newer Older
1 2 3 4 5 6 7 8
package pwc.taxtech.atms.vat.entity;

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

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

    /**
     *
     * This field was generated by MyBatis Generator.
neo's avatar
neo committed
26
     * This field corresponds to the database column TAX_PROJECT.ASSET_GROUP_RESULT.ASSET_NAME
27 28 29
     *
     * @mbg.generated
     */
neo's avatar
neo committed
30
    private String assetName;
31 32 33 34

    /**
     *
     * This field was generated by MyBatis Generator.
neo's avatar
neo committed
35
     * This field corresponds to the database column TAX_PROJECT.ASSET_GROUP_RESULT.ASSET_GROUP_ID
36 37 38
     *
     * @mbg.generated
     */
neo's avatar
neo committed
39
    private String assetGroupId;
40 41 42 43

    /**
     *
     * This field was generated by MyBatis Generator.
neo's avatar
neo committed
44
     * This field corresponds to the database column TAX_PROJECT.ASSET_GROUP_RESULT.ASSET_DETAIL_GROUP_ID
45 46 47
     *
     * @mbg.generated
     */
neo's avatar
neo committed
48
    private String assetDetailGroupId;
49 50 51 52

    /**
     *
     * This field was generated by MyBatis Generator.
neo's avatar
neo committed
53
     * This field corresponds to the database column TAX_PROJECT.ASSET_GROUP_RESULT.TAX_DEPRECIATION_PERIOD
54 55 56
     *
     * @mbg.generated
     */
neo's avatar
neo committed
57
    private Integer taxDepreciationPeriod;
58 59 60 61

    /**
     *
     * This field was generated by MyBatis Generator.
neo's avatar
neo committed
62
     * This field corresponds to the database column TAX_PROJECT.ASSET_GROUP_RESULT.CREATE_TIME
63 64 65
     *
     * @mbg.generated
     */
neo's avatar
neo committed
66
    private Date createTime;
67 68 69 70

    /**
     *
     * This field was generated by MyBatis Generator.
neo's avatar
neo committed
71
     * This field corresponds to the database column TAX_PROJECT.ASSET_GROUP_RESULT.UPDATE_TIME
72 73 74
     *
     * @mbg.generated
     */
neo's avatar
neo committed
75
    private Date updateTime;
76 77 78

    /**
     * This field was generated by MyBatis Generator.
neo's avatar
neo committed
79
     * This field corresponds to the database table TAX_PROJECT.ASSET_GROUP_RESULT
80 81 82 83 84 85 86
     *
     * @mbg.generated
     */
    private static final long serialVersionUID = 1L;

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
87
     * This method returns the value of the database column TAX_PROJECT.ASSET_GROUP_RESULT.ID
88
     *
neo's avatar
neo committed
89
     * @return the value of TAX_PROJECT.ASSET_GROUP_RESULT.ID
90 91 92 93 94 95 96 97 98
     *
     * @mbg.generated
     */
    public String getId() {
        return id;
    }

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
99
     * This method sets the value of the database column TAX_PROJECT.ASSET_GROUP_RESULT.ID
100
     *
neo's avatar
neo committed
101
     * @param id the value for TAX_PROJECT.ASSET_GROUP_RESULT.ID
102 103 104 105 106 107 108 109 110
     *
     * @mbg.generated
     */
    public void setId(String id) {
        this.id = id == null ? null : id.trim();
    }

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
111
     * This method returns the value of the database column TAX_PROJECT.ASSET_GROUP_RESULT.ASSET_NAME
112
     *
neo's avatar
neo committed
113
     * @return the value of TAX_PROJECT.ASSET_GROUP_RESULT.ASSET_NAME
114 115 116
     *
     * @mbg.generated
     */
neo's avatar
neo committed
117 118
    public String getAssetName() {
        return assetName;
119 120 121 122
    }

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
123
     * This method sets the value of the database column TAX_PROJECT.ASSET_GROUP_RESULT.ASSET_NAME
124
     *
neo's avatar
neo committed
125
     * @param assetName the value for TAX_PROJECT.ASSET_GROUP_RESULT.ASSET_NAME
126 127 128
     *
     * @mbg.generated
     */
neo's avatar
neo committed
129 130
    public void setAssetName(String assetName) {
        this.assetName = assetName == null ? null : assetName.trim();
131 132 133 134
    }

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
135
     * This method returns the value of the database column TAX_PROJECT.ASSET_GROUP_RESULT.ASSET_GROUP_ID
136
     *
neo's avatar
neo committed
137
     * @return the value of TAX_PROJECT.ASSET_GROUP_RESULT.ASSET_GROUP_ID
138 139 140
     *
     * @mbg.generated
     */
neo's avatar
neo committed
141 142
    public String getAssetGroupId() {
        return assetGroupId;
143 144 145 146
    }

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
147
     * This method sets the value of the database column TAX_PROJECT.ASSET_GROUP_RESULT.ASSET_GROUP_ID
148
     *
neo's avatar
neo committed
149
     * @param assetGroupId the value for TAX_PROJECT.ASSET_GROUP_RESULT.ASSET_GROUP_ID
150 151 152
     *
     * @mbg.generated
     */
neo's avatar
neo committed
153 154
    public void setAssetGroupId(String assetGroupId) {
        this.assetGroupId = assetGroupId == null ? null : assetGroupId.trim();
155 156 157 158
    }

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
159
     * This method returns the value of the database column TAX_PROJECT.ASSET_GROUP_RESULT.ASSET_DETAIL_GROUP_ID
160
     *
neo's avatar
neo committed
161
     * @return the value of TAX_PROJECT.ASSET_GROUP_RESULT.ASSET_DETAIL_GROUP_ID
162 163 164
     *
     * @mbg.generated
     */
neo's avatar
neo committed
165 166
    public String getAssetDetailGroupId() {
        return assetDetailGroupId;
167 168 169 170
    }

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
171
     * This method sets the value of the database column TAX_PROJECT.ASSET_GROUP_RESULT.ASSET_DETAIL_GROUP_ID
172
     *
neo's avatar
neo committed
173
     * @param assetDetailGroupId the value for TAX_PROJECT.ASSET_GROUP_RESULT.ASSET_DETAIL_GROUP_ID
174 175 176
     *
     * @mbg.generated
     */
neo's avatar
neo committed
177 178
    public void setAssetDetailGroupId(String assetDetailGroupId) {
        this.assetDetailGroupId = assetDetailGroupId == null ? null : assetDetailGroupId.trim();
179 180 181 182
    }

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
183
     * This method returns the value of the database column TAX_PROJECT.ASSET_GROUP_RESULT.TAX_DEPRECIATION_PERIOD
184
     *
neo's avatar
neo committed
185
     * @return the value of TAX_PROJECT.ASSET_GROUP_RESULT.TAX_DEPRECIATION_PERIOD
186 187 188
     *
     * @mbg.generated
     */
neo's avatar
neo committed
189 190
    public Integer getTaxDepreciationPeriod() {
        return taxDepreciationPeriod;
191 192 193 194
    }

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
195
     * This method sets the value of the database column TAX_PROJECT.ASSET_GROUP_RESULT.TAX_DEPRECIATION_PERIOD
196
     *
neo's avatar
neo committed
197
     * @param taxDepreciationPeriod the value for TAX_PROJECT.ASSET_GROUP_RESULT.TAX_DEPRECIATION_PERIOD
198 199 200
     *
     * @mbg.generated
     */
neo's avatar
neo committed
201 202
    public void setTaxDepreciationPeriod(Integer taxDepreciationPeriod) {
        this.taxDepreciationPeriod = taxDepreciationPeriod;
203 204 205 206
    }

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
207
     * This method returns the value of the database column TAX_PROJECT.ASSET_GROUP_RESULT.CREATE_TIME
208
     *
neo's avatar
neo committed
209
     * @return the value of TAX_PROJECT.ASSET_GROUP_RESULT.CREATE_TIME
210 211 212
     *
     * @mbg.generated
     */
neo's avatar
neo committed
213 214
    public Date getCreateTime() {
        return createTime;
215 216 217 218
    }

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
219
     * This method sets the value of the database column TAX_PROJECT.ASSET_GROUP_RESULT.CREATE_TIME
220
     *
neo's avatar
neo committed
221
     * @param createTime the value for TAX_PROJECT.ASSET_GROUP_RESULT.CREATE_TIME
222 223 224
     *
     * @mbg.generated
     */
neo's avatar
neo committed
225 226
    public void setCreateTime(Date createTime) {
        this.createTime = createTime;
227 228 229 230
    }

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
231
     * This method returns the value of the database column TAX_PROJECT.ASSET_GROUP_RESULT.UPDATE_TIME
232
     *
neo's avatar
neo committed
233
     * @return the value of TAX_PROJECT.ASSET_GROUP_RESULT.UPDATE_TIME
234 235 236
     *
     * @mbg.generated
     */
neo's avatar
neo committed
237 238
    public Date getUpdateTime() {
        return updateTime;
239 240 241 242
    }

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
243
     * This method sets the value of the database column TAX_PROJECT.ASSET_GROUP_RESULT.UPDATE_TIME
244
     *
neo's avatar
neo committed
245
     * @param updateTime the value for TAX_PROJECT.ASSET_GROUP_RESULT.UPDATE_TIME
246 247 248
     *
     * @mbg.generated
     */
neo's avatar
neo committed
249 250
    public void setUpdateTime(Date updateTime) {
        this.updateTime = updateTime;
251 252 253 254
    }

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
255
     * This method corresponds to the database table TAX_PROJECT.ASSET_GROUP_RESULT
256 257 258 259 260 261 262 263 264 265
     *
     * @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);
neo's avatar
neo committed
266 267 268 269 270 271
        sb.append(", assetName=").append(assetName);
        sb.append(", assetGroupId=").append(assetGroupId);
        sb.append(", assetDetailGroupId=").append(assetDetailGroupId);
        sb.append(", taxDepreciationPeriod=").append(taxDepreciationPeriod);
        sb.append(", createTime=").append(createTime);
        sb.append(", updateTime=").append(updateTime);
272 273 274 275
        sb.append("]");
        return sb.toString();
    }
}