|
|
@@ -1,6 +1,7 @@
|
|
|
package com.etotem.cfc.controller.admin;
|
|
|
|
|
|
import com.etotem.cfc.common.Result;
|
|
|
+import com.etotem.cfc.dto.SettlementStats;
|
|
|
import com.etotem.cfc.entity.ServiceSettlement;
|
|
|
import com.etotem.cfc.service.DanSettlementService;
|
|
|
import org.springframework.web.bind.annotation.*;
|
|
|
@@ -77,28 +78,3 @@ class SettlementListRequest {
|
|
|
public String getProviderType() { return providerType; }
|
|
|
public void setProviderType(String providerType) { this.providerType = providerType; }
|
|
|
}
|
|
|
-
|
|
|
-/**
|
|
|
- * 结算统计数据
|
|
|
- */
|
|
|
-class SettlementStats {
|
|
|
- private Long totalAmount; // 总金额(分)
|
|
|
- private Long pendingAmount; // 待结算金额(分)
|
|
|
- private Long settledAmount; // 已结算金额(分)
|
|
|
- private Integer totalCount; // 总笔数
|
|
|
- private Integer pendingCount; // 待结算笔数
|
|
|
- private Integer settledCount; // 已结算笔数
|
|
|
-
|
|
|
- public Long getTotalAmount() { return totalAmount; }
|
|
|
- public void setTotalAmount(Long totalAmount) { this.totalAmount = totalAmount; }
|
|
|
- public Long getPendingAmount() { return pendingAmount; }
|
|
|
- public void setPendingAmount(Long pendingAmount) { this.pendingAmount = pendingAmount; }
|
|
|
- public Long getSettledAmount() { return settledAmount; }
|
|
|
- public void setSettledAmount(Long settledAmount) { this.settledAmount = settledAmount; }
|
|
|
- public Integer getTotalCount() { return totalCount; }
|
|
|
- public void setTotalCount(Integer totalCount) { this.totalCount = totalCount; }
|
|
|
- public Integer getPendingCount() { return pendingCount; }
|
|
|
- public void setPendingCount(Integer pendingCount) { this.pendingCount = pendingCount; }
|
|
|
- public Integer getSettledCount() { return settledCount; }
|
|
|
- public void setSettledCount(Integer settledCount) { this.settledCount = settledCount; }
|
|
|
-}
|