## 看板充值金额按万进行处理;
This commit is contained in:
parent
231c17934f
commit
2cc32a6509
|
@ -120,6 +120,8 @@ public class BoardController extends BaseController {
|
|||
List<BoardRechargeAccountVO> rechargeList = iBoardService.listAccountRechargeBoard();
|
||||
|
||||
for (BoardRechargeAccountVO boardMemberVO : rechargeList) {
|
||||
// 充值金额按万处理
|
||||
boardMemberVO.setRechargeAmount(BigDecimalUtil.handleBig10000Down(boardMemberVO.getRechargeAmount()));
|
||||
if (boardMemberVO.getSort() == 0) {
|
||||
// 今日
|
||||
boardRechargeVO.getRechargeTodayList().add(boardMemberVO);
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
package com.hzs.system.board.vo;
|
||||
|
||||
import com.hzs.common.core.annotation.BigDecimalFormat;
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
@ -19,6 +20,7 @@ public class BoardRechargeAccountVO implements Serializable {
|
|||
/**
|
||||
* 充值金额
|
||||
*/
|
||||
@BigDecimalFormat
|
||||
private BigDecimal rechargeAmount;
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue