Browse Source

平台资金管理

ZhangWenQiang 5 years ago
parent
commit
79d755f322

+ 6 - 6
happy-boot-module-powerjob/src/main/java/org/jeecg/modules/hlgcpmanager/entity/HlgCpAccount.java

@@ -35,22 +35,22 @@ public class HlgCpAccount implements Serializable {
 	private java.lang.Integer cpCompanyId;
 	/**总入账项目金额*/
 	@Excel(name = "总入账项目金额", width = 15)
-	private java.math.BigDecimal totalDeposit;
+	private Double totalDeposit;
 	/**总入账服务费*/
 	@Excel(name = "总入账服务费", width = 15)
-	private java.math.BigDecimal totalDepositServiceFee;
+	private Double totalDepositServiceFee;
 	/**总出账项目金额金额*/
 	@Excel(name = "总出账项目金额金额", width = 15)
-	private java.math.BigDecimal totalPayment;
+	private Double totalPayment;
 	/**总出账服务费*/
 	@Excel(name = "总出账服务费", width = 15)
-	private java.math.BigDecimal totalPaymentServiceFee;
+	private Double totalPaymentServiceFee;
 	/**总项目金额余额(核算可用total_deposit-total_payment)*/
 	@Excel(name = "总项目金额余额(核算可用total_deposit-total_payment)", width = 15)
-	private java.math.BigDecimal balance;
+	private Double balance;
 	/**总服务费余额(核算可用total_deposit_service_fee-total_payment_service_fee)*/
 	@Excel(name = "总服务费余额(核算可用total_deposit_service_fee-total_payment_service_fee)", width = 15)
-	private java.math.BigDecimal serviceFeeBalance;
+	private Double serviceFeeBalance;
 	/**数据权限*/
 	@Excel(name = "数据权限", width = 15)
 	private java.lang.String sysOrgCode;