|
@@ -20,6 +20,10 @@ public class ReportFinancialIndicatorsDTO extends BaseReportDTO<ReportFinancialI
|
|
private BigDecimal nav;
|
|
private BigDecimal nav;
|
|
private BigDecimal profit;
|
|
private BigDecimal profit;
|
|
private BigDecimal realizedIncome;
|
|
private BigDecimal realizedIncome;
|
|
|
|
+ /**
|
|
|
|
+ * 期末可供分配利润
|
|
|
|
+ */
|
|
|
|
+ private BigDecimal undistributedProfit;
|
|
|
|
|
|
@Override
|
|
@Override
|
|
public ReportFinancialIndicatorsDO toEntity() {
|
|
public ReportFinancialIndicatorsDO toEntity() {
|
|
@@ -31,6 +35,7 @@ public class ReportFinancialIndicatorsDTO extends BaseReportDTO<ReportFinancialI
|
|
entity.setNav(this.nav);
|
|
entity.setNav(this.nav);
|
|
entity.setProfit(this.profit);
|
|
entity.setProfit(this.profit);
|
|
entity.setRealizedIncome(this.realizedIncome);
|
|
entity.setRealizedIncome(this.realizedIncome);
|
|
|
|
+ entity.setUndistributedProfit(this.undistributedProfit);
|
|
return entity;
|
|
return entity;
|
|
}
|
|
}
|
|
|
|
|
|
@@ -43,6 +48,7 @@ public class ReportFinancialIndicatorsDTO extends BaseReportDTO<ReportFinancialI
|
|
", fundAssetSize=" + fundAssetSize +
|
|
", fundAssetSize=" + fundAssetSize +
|
|
", nav=" + nav +
|
|
", nav=" + nav +
|
|
", profit=" + profit +
|
|
", profit=" + profit +
|
|
|
|
+ ", undistributedProfit=" + undistributedProfit +
|
|
", realizedIncome=" + realizedIncome +
|
|
", realizedIncome=" + realizedIncome +
|
|
'}';
|
|
'}';
|
|
}
|
|
}
|