PiccCashFlow.java 713 Bytes
package com.lhcredit.project.worldbox.domain;

import lombok.Data;

/**
 * 现金流量表
 */
@Data
public class PiccCashFlow {
    private String currency;//币种
    private String unit;//单位
    private String financialDate;//财务截止时间
    private String financialsStatementDuration;//财务区间
    private String cashFlowsFromOperating;//经营活动产生的现金流量
    private String cashFlowsFromInvesting;//投资活动产生的现金流量
    private String cashFlowsFromFinancing;//融资活动产生的现金流量
    private String increaseDecreaseInCash;//现金增加/减少
    private String cashAtYearBegin;//年初现金
    private String cashAtYearEnd;//期末现金
}