package com.cku.oa.statistics.strategy;

import java.util.Date;

public class YearToMonthSplitEntity {

    private Date chargeDate;		// 真正扣款的时间
    private String paymentMoney;		// 付费的金额
    private String price;
    private Date installmentBeginDate;
    private Date installmentEndDate;


    public Date getChargeDate() {
        return chargeDate;
    }

    public void setChargeDate(Date chargeDate) {
        this.chargeDate = chargeDate;
    }

    public String getPaymentMoney() {
        return paymentMoney;
    }

    public void setPaymentMoney(String paymentMoney) {
        this.paymentMoney = paymentMoney;
    }

    public String getPrice() {
        return price;
    }

    public void setPrice(String price) {
        this.price = price;
    }

    public Date getInstallmentBeginDate() {
        return installmentBeginDate;
    }

    public void setInstallmentBeginDate(Date installmentBeginDate) {
        this.installmentBeginDate = installmentBeginDate;
    }

    public Date getInstallmentEndDate() {
        return installmentEndDate;
    }

    public void setInstallmentEndDate(Date installmentEndDate) {
        this.installmentEndDate = installmentEndDate;
    }
}
