Browse Source

处理平台已结算的记录查询

hxl13994548489 2 năm trước cách đây
mục cha
commit
4aedb5f849

+ 1 - 1
src/main/java/com/ydtech/modules/fnc/dto/PlatformSettlementRecordDto.java

@@ -21,5 +21,5 @@ public class PlatformSettlementRecordDto implements Serializable {
     private String settlementTime;
 
     @ApiModelProperty(value = "进账金额")
-    private Decimal totalFeevalue;
+    private Decimal settlementAmount;
 }

+ 1 - 1
src/main/resources/mapper/modules/fnc/InsPlyIncomeMapper.xml

@@ -1691,7 +1691,7 @@
     <select id="platformSettlementRecord" resultType="com.ydtech.modules.fnc.dto.PlatformSettlementRecordDto">
         SELECT
             DATE_FORMAT(a.settlement_time, '%Y-%m-%d %H:%i:%s') as "settlementTime",
-            SUM( a.commission_feevalue + a.other_feevalue ) AS "totalFeevalue"
+            SUM( a.commission_feevalue + a.other_feevalue ) AS "settlementAmount"
         FROM
             ins_ply_income a
             LEFT  JOIN  ptl_agreement  pa  on  a.agreement_id  = pa.id