src/main/java/com/xcong/excoin/modules/coin/controller/GbzOrderController.java
@@ -106,6 +106,10 @@ String status = redisUtils.getString("bzz_order_status"); priceVo.setStatus(StrUtil.isNotBlank(status) ? Integer.parseInt(status) : 2); String remain = redisUtils.getString("bzz_coin_total"); priceVo.setRemainCnt(Integer.parseInt(remain)); BigDecimal totalAmount = gbzOrderDao.selectOrderTotalAmount(LoginUserUtils.getAppLoginUser().getId()); priceVo.setTotalAmount(totalAmount); return Result.ok(priceVo); src/main/java/com/xcong/excoin/modules/coin/parameter/vo/PriceVo.java
@@ -19,4 +19,7 @@ @ApiModelProperty(value = "状态 1可提 2不可提") private Integer status; @ApiModelProperty(value = "剩余数量") private Integer remainCnt; }