update 增加昨日收入金额,和累计提现金额

This commit is contained in:
2023-10-17 16:07:54 +08:00
parent 7cbabc5e10
commit a90584443d
5 changed files with 35 additions and 5 deletions

View File

@@ -8,7 +8,6 @@ import com.jsowell.pile.vo.web.WithdrawInfoVO;
import java.util.List;
public interface ClearingWithdrawInfoService{
int deleteByPrimaryKey(Integer id);
int insert(ClearingWithdrawInfo record);

View File

@@ -118,7 +118,7 @@ public class ClearingWithdrawInfoServiceImpl implements ClearingWithdrawInfoServ
vo.setWithdrawCode(withdrawCode);
vo.setApplicationTime(DateUtils.formatDateTime(clearingWithdrawInfo.getApplicationTime()));
vo.setStatusDesc(clearingWithdrawInfo.getWithdrawStatus());
vo.setCashAmt(String.valueOf(clearingWithdrawInfo.getCreditedAmt()));
vo.setCashAmt(clearingWithdrawInfo.getCreditedAmt());
resultList.add(vo);
}
return resultList;

View File

@@ -3,6 +3,8 @@ package com.jsowell.pile.vo.web;
import lombok.Getter;
import lombok.Setter;
import java.math.BigDecimal;
/**
* 提现记录VO
*/
@@ -22,5 +24,5 @@ public class WithdrawInfoVO {
private String applicationTime;
// 提现金额
private String cashAmt;
private BigDecimal cashAmt;
}