CustBalanceStd.java 15.1 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 8

import java.io.Serializable;
import java.math.BigDecimal;

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

    /**
     *
     * This field was generated by MyBatis Generator.
neo's avatar
neo committed
26
     * This field corresponds to the database column TAX_PROJECT.CUST_BALANCE_STD.PERIOD_ID
27 28 29
     *
     * @mbg.generated
     */
neo's avatar
neo committed
30
    private Integer periodId;
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.CUST_BALANCE_STD.ACCT_CODE
36 37 38 39 40 41 42 43
     *
     * @mbg.generated
     */
    private String acctCode;

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

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

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

    /**
     *
     * This field was generated by MyBatis Generator.
neo's avatar
neo committed
71
     * This field corresponds to the database column TAX_PROJECT.CUST_BALANCE_STD.CREDIT_BAL
72 73 74 75 76 77 78 79
     *
     * @mbg.generated
     */
    private BigDecimal creditBal;

    /**
     *
     * This field was generated by MyBatis Generator.
neo's avatar
neo committed
80
     * This field corresponds to the database column TAX_PROJECT.CUST_BALANCE_STD.YEAR_DEBIT_BAL
81 82 83 84 85 86 87 88
     *
     * @mbg.generated
     */
    private BigDecimal yearDebitBal;

    /**
     *
     * This field was generated by MyBatis Generator.
neo's avatar
neo committed
89
     * This field corresponds to the database column TAX_PROJECT.CUST_BALANCE_STD.YEAR_CREDIT_BAL
90 91 92 93 94 95 96 97
     *
     * @mbg.generated
     */
    private BigDecimal yearCreditBal;

    /**
     *
     * This field was generated by MyBatis Generator.
neo's avatar
neo committed
98
     * This field corresponds to the database column TAX_PROJECT.CUST_BALANCE_STD.END_BAL
99 100 101 102 103 104 105 106
     *
     * @mbg.generated
     */
    private BigDecimal endBal;

    /**
     *
     * This field was generated by MyBatis Generator.
neo's avatar
neo committed
107
     * This field corresponds to the database column TAX_PROJECT.CUST_BALANCE_STD.BEG_DEBIT_BAL
108 109 110 111 112 113 114 115
     *
     * @mbg.generated
     */
    private BigDecimal begDebitBal;

    /**
     *
     * This field was generated by MyBatis Generator.
neo's avatar
neo committed
116
     * This field corresponds to the database column TAX_PROJECT.CUST_BALANCE_STD.BEG_CREDIT_BAL
117 118 119 120 121 122 123 124
     *
     * @mbg.generated
     */
    private BigDecimal begCreditBal;

    /**
     *
     * This field was generated by MyBatis Generator.
neo's avatar
neo committed
125
     * This field corresponds to the database column TAX_PROJECT.CUST_BALANCE_STD.END_DEBIT_BAL
126 127 128 129 130 131 132 133
     *
     * @mbg.generated
     */
    private BigDecimal endDebitBal;

    /**
     *
     * This field was generated by MyBatis Generator.
neo's avatar
neo committed
134
     * This field corresponds to the database column TAX_PROJECT.CUST_BALANCE_STD.END_CREDIT_BAL
135 136 137 138 139 140 141
     *
     * @mbg.generated
     */
    private BigDecimal endCreditBal;

    /**
     * This field was generated by MyBatis Generator.
neo's avatar
neo committed
142
     * This field corresponds to the database table TAX_PROJECT.CUST_BALANCE_STD
143 144 145 146 147 148 149
     *
     * @mbg.generated
     */
    private static final long serialVersionUID = 1L;

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
150
     * This method returns the value of the database column TAX_PROJECT.CUST_BALANCE_STD.BALANCE_ID
151
     *
neo's avatar
neo committed
152
     * @return the value of TAX_PROJECT.CUST_BALANCE_STD.BALANCE_ID
153 154 155
     *
     * @mbg.generated
     */
neo's avatar
neo committed
156 157
    public String getBalanceId() {
        return balanceId;
158 159 160 161
    }

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
162
     * This method sets the value of the database column TAX_PROJECT.CUST_BALANCE_STD.BALANCE_ID
163
     *
neo's avatar
neo committed
164
     * @param balanceId the value for TAX_PROJECT.CUST_BALANCE_STD.BALANCE_ID
165 166 167
     *
     * @mbg.generated
     */
neo's avatar
neo committed
168 169
    public void setBalanceId(String balanceId) {
        this.balanceId = balanceId == null ? null : balanceId.trim();
170 171 172 173
    }

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
174
     * This method returns the value of the database column TAX_PROJECT.CUST_BALANCE_STD.PERIOD_ID
175
     *
neo's avatar
neo committed
176
     * @return the value of TAX_PROJECT.CUST_BALANCE_STD.PERIOD_ID
177 178 179
     *
     * @mbg.generated
     */
neo's avatar
neo committed
180 181
    public Integer getPeriodId() {
        return periodId;
182 183 184 185
    }

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
186
     * This method sets the value of the database column TAX_PROJECT.CUST_BALANCE_STD.PERIOD_ID
187
     *
neo's avatar
neo committed
188
     * @param periodId the value for TAX_PROJECT.CUST_BALANCE_STD.PERIOD_ID
189 190 191
     *
     * @mbg.generated
     */
neo's avatar
neo committed
192 193
    public void setPeriodId(Integer periodId) {
        this.periodId = periodId;
194 195 196 197
    }

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
198
     * This method returns the value of the database column TAX_PROJECT.CUST_BALANCE_STD.ACCT_CODE
199
     *
neo's avatar
neo committed
200
     * @return the value of TAX_PROJECT.CUST_BALANCE_STD.ACCT_CODE
201 202 203 204 205 206 207 208 209
     *
     * @mbg.generated
     */
    public String getAcctCode() {
        return acctCode;
    }

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
210
     * This method sets the value of the database column TAX_PROJECT.CUST_BALANCE_STD.ACCT_CODE
211
     *
neo's avatar
neo committed
212
     * @param acctCode the value for TAX_PROJECT.CUST_BALANCE_STD.ACCT_CODE
213 214 215 216 217 218 219 220 221
     *
     * @mbg.generated
     */
    public void setAcctCode(String acctCode) {
        this.acctCode = acctCode == null ? null : acctCode.trim();
    }

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
222
     * This method returns the value of the database column TAX_PROJECT.CUST_BALANCE_STD.CUSTOMER_CODE
223
     *
neo's avatar
neo committed
224
     * @return the value of TAX_PROJECT.CUST_BALANCE_STD.CUSTOMER_CODE
225 226 227 228 229 230 231 232 233
     *
     * @mbg.generated
     */
    public String getCustomerCode() {
        return customerCode;
    }

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
234
     * This method sets the value of the database column TAX_PROJECT.CUST_BALANCE_STD.CUSTOMER_CODE
235
     *
neo's avatar
neo committed
236
     * @param customerCode the value for TAX_PROJECT.CUST_BALANCE_STD.CUSTOMER_CODE
237 238 239 240 241 242 243 244 245
     *
     * @mbg.generated
     */
    public void setCustomerCode(String customerCode) {
        this.customerCode = customerCode == null ? null : customerCode.trim();
    }

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
246
     * This method returns the value of the database column TAX_PROJECT.CUST_BALANCE_STD.BEG_BAL
247
     *
neo's avatar
neo committed
248
     * @return the value of TAX_PROJECT.CUST_BALANCE_STD.BEG_BAL
249 250 251 252 253 254 255 256 257
     *
     * @mbg.generated
     */
    public BigDecimal getBegBal() {
        return begBal;
    }

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
258
     * This method sets the value of the database column TAX_PROJECT.CUST_BALANCE_STD.BEG_BAL
259
     *
neo's avatar
neo committed
260
     * @param begBal the value for TAX_PROJECT.CUST_BALANCE_STD.BEG_BAL
261 262 263 264 265 266 267 268 269
     *
     * @mbg.generated
     */
    public void setBegBal(BigDecimal begBal) {
        this.begBal = begBal;
    }

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
270
     * This method returns the value of the database column TAX_PROJECT.CUST_BALANCE_STD.DEBIT_BAL
271
     *
neo's avatar
neo committed
272
     * @return the value of TAX_PROJECT.CUST_BALANCE_STD.DEBIT_BAL
273 274 275 276 277 278 279 280 281
     *
     * @mbg.generated
     */
    public BigDecimal getDebitBal() {
        return debitBal;
    }

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
282
     * This method sets the value of the database column TAX_PROJECT.CUST_BALANCE_STD.DEBIT_BAL
283
     *
neo's avatar
neo committed
284
     * @param debitBal the value for TAX_PROJECT.CUST_BALANCE_STD.DEBIT_BAL
285 286 287 288 289 290 291 292 293
     *
     * @mbg.generated
     */
    public void setDebitBal(BigDecimal debitBal) {
        this.debitBal = debitBal;
    }

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
294
     * This method returns the value of the database column TAX_PROJECT.CUST_BALANCE_STD.CREDIT_BAL
295
     *
neo's avatar
neo committed
296
     * @return the value of TAX_PROJECT.CUST_BALANCE_STD.CREDIT_BAL
297 298 299 300 301 302 303 304 305
     *
     * @mbg.generated
     */
    public BigDecimal getCreditBal() {
        return creditBal;
    }

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
306
     * This method sets the value of the database column TAX_PROJECT.CUST_BALANCE_STD.CREDIT_BAL
307
     *
neo's avatar
neo committed
308
     * @param creditBal the value for TAX_PROJECT.CUST_BALANCE_STD.CREDIT_BAL
309 310 311 312 313 314 315 316 317
     *
     * @mbg.generated
     */
    public void setCreditBal(BigDecimal creditBal) {
        this.creditBal = creditBal;
    }

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
318
     * This method returns the value of the database column TAX_PROJECT.CUST_BALANCE_STD.YEAR_DEBIT_BAL
319
     *
neo's avatar
neo committed
320
     * @return the value of TAX_PROJECT.CUST_BALANCE_STD.YEAR_DEBIT_BAL
321 322 323 324 325 326 327 328 329
     *
     * @mbg.generated
     */
    public BigDecimal getYearDebitBal() {
        return yearDebitBal;
    }

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
330
     * This method sets the value of the database column TAX_PROJECT.CUST_BALANCE_STD.YEAR_DEBIT_BAL
331
     *
neo's avatar
neo committed
332
     * @param yearDebitBal the value for TAX_PROJECT.CUST_BALANCE_STD.YEAR_DEBIT_BAL
333 334 335 336 337 338 339 340 341
     *
     * @mbg.generated
     */
    public void setYearDebitBal(BigDecimal yearDebitBal) {
        this.yearDebitBal = yearDebitBal;
    }

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
342
     * This method returns the value of the database column TAX_PROJECT.CUST_BALANCE_STD.YEAR_CREDIT_BAL
343
     *
neo's avatar
neo committed
344
     * @return the value of TAX_PROJECT.CUST_BALANCE_STD.YEAR_CREDIT_BAL
345 346 347 348 349 350 351 352 353
     *
     * @mbg.generated
     */
    public BigDecimal getYearCreditBal() {
        return yearCreditBal;
    }

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
354
     * This method sets the value of the database column TAX_PROJECT.CUST_BALANCE_STD.YEAR_CREDIT_BAL
355
     *
neo's avatar
neo committed
356
     * @param yearCreditBal the value for TAX_PROJECT.CUST_BALANCE_STD.YEAR_CREDIT_BAL
357 358 359 360 361 362 363 364 365
     *
     * @mbg.generated
     */
    public void setYearCreditBal(BigDecimal yearCreditBal) {
        this.yearCreditBal = yearCreditBal;
    }

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
366
     * This method returns the value of the database column TAX_PROJECT.CUST_BALANCE_STD.END_BAL
367
     *
neo's avatar
neo committed
368
     * @return the value of TAX_PROJECT.CUST_BALANCE_STD.END_BAL
369 370 371 372 373 374 375 376 377
     *
     * @mbg.generated
     */
    public BigDecimal getEndBal() {
        return endBal;
    }

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
378
     * This method sets the value of the database column TAX_PROJECT.CUST_BALANCE_STD.END_BAL
379
     *
neo's avatar
neo committed
380
     * @param endBal the value for TAX_PROJECT.CUST_BALANCE_STD.END_BAL
381 382 383 384 385 386 387 388 389
     *
     * @mbg.generated
     */
    public void setEndBal(BigDecimal endBal) {
        this.endBal = endBal;
    }

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
390
     * This method returns the value of the database column TAX_PROJECT.CUST_BALANCE_STD.BEG_DEBIT_BAL
391
     *
neo's avatar
neo committed
392
     * @return the value of TAX_PROJECT.CUST_BALANCE_STD.BEG_DEBIT_BAL
393 394 395 396 397 398 399 400 401
     *
     * @mbg.generated
     */
    public BigDecimal getBegDebitBal() {
        return begDebitBal;
    }

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
402
     * This method sets the value of the database column TAX_PROJECT.CUST_BALANCE_STD.BEG_DEBIT_BAL
403
     *
neo's avatar
neo committed
404
     * @param begDebitBal the value for TAX_PROJECT.CUST_BALANCE_STD.BEG_DEBIT_BAL
405 406 407 408 409 410 411 412 413
     *
     * @mbg.generated
     */
    public void setBegDebitBal(BigDecimal begDebitBal) {
        this.begDebitBal = begDebitBal;
    }

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
414
     * This method returns the value of the database column TAX_PROJECT.CUST_BALANCE_STD.BEG_CREDIT_BAL
415
     *
neo's avatar
neo committed
416
     * @return the value of TAX_PROJECT.CUST_BALANCE_STD.BEG_CREDIT_BAL
417 418 419 420 421 422 423 424 425
     *
     * @mbg.generated
     */
    public BigDecimal getBegCreditBal() {
        return begCreditBal;
    }

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
426
     * This method sets the value of the database column TAX_PROJECT.CUST_BALANCE_STD.BEG_CREDIT_BAL
427
     *
neo's avatar
neo committed
428
     * @param begCreditBal the value for TAX_PROJECT.CUST_BALANCE_STD.BEG_CREDIT_BAL
429 430 431 432 433 434 435 436 437
     *
     * @mbg.generated
     */
    public void setBegCreditBal(BigDecimal begCreditBal) {
        this.begCreditBal = begCreditBal;
    }

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
438
     * This method returns the value of the database column TAX_PROJECT.CUST_BALANCE_STD.END_DEBIT_BAL
439
     *
neo's avatar
neo committed
440
     * @return the value of TAX_PROJECT.CUST_BALANCE_STD.END_DEBIT_BAL
441 442 443 444 445 446 447 448 449
     *
     * @mbg.generated
     */
    public BigDecimal getEndDebitBal() {
        return endDebitBal;
    }

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
450
     * This method sets the value of the database column TAX_PROJECT.CUST_BALANCE_STD.END_DEBIT_BAL
451
     *
neo's avatar
neo committed
452
     * @param endDebitBal the value for TAX_PROJECT.CUST_BALANCE_STD.END_DEBIT_BAL
453 454 455 456 457 458 459 460 461
     *
     * @mbg.generated
     */
    public void setEndDebitBal(BigDecimal endDebitBal) {
        this.endDebitBal = endDebitBal;
    }

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
462
     * This method returns the value of the database column TAX_PROJECT.CUST_BALANCE_STD.END_CREDIT_BAL
463
     *
neo's avatar
neo committed
464
     * @return the value of TAX_PROJECT.CUST_BALANCE_STD.END_CREDIT_BAL
465 466 467 468 469 470 471 472 473
     *
     * @mbg.generated
     */
    public BigDecimal getEndCreditBal() {
        return endCreditBal;
    }

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
474
     * This method sets the value of the database column TAX_PROJECT.CUST_BALANCE_STD.END_CREDIT_BAL
475
     *
neo's avatar
neo committed
476
     * @param endCreditBal the value for TAX_PROJECT.CUST_BALANCE_STD.END_CREDIT_BAL
477 478 479 480 481 482 483 484 485
     *
     * @mbg.generated
     */
    public void setEndCreditBal(BigDecimal endCreditBal) {
        this.endCreditBal = endCreditBal;
    }

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
486
     * This method corresponds to the database table TAX_PROJECT.CUST_BALANCE_STD
487 488 489 490 491 492 493 494 495
     *
     * @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
496 497
        sb.append(", balanceId=").append(balanceId);
        sb.append(", periodId=").append(periodId);
498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513
        sb.append(", acctCode=").append(acctCode);
        sb.append(", customerCode=").append(customerCode);
        sb.append(", begBal=").append(begBal);
        sb.append(", debitBal=").append(debitBal);
        sb.append(", creditBal=").append(creditBal);
        sb.append(", yearDebitBal=").append(yearDebitBal);
        sb.append(", yearCreditBal=").append(yearCreditBal);
        sb.append(", endBal=").append(endBal);
        sb.append(", begDebitBal=").append(begDebitBal);
        sb.append(", begCreditBal=").append(begCreditBal);
        sb.append(", endDebitBal=").append(endDebitBal);
        sb.append(", endCreditBal=").append(endCreditBal);
        sb.append("]");
        return sb.toString();
    }
}