parent
4ff64636fc
commit
9a7be34764
|
|
@ -122,7 +122,7 @@ public class FinanceRechargerServiceImpl implements IFinanceRechargerService {
|
|||
|
||||
for (FinanceRechargeListVo vo : iPage.getRecords()) {
|
||||
vo.setCreateTime(TimeUtils.timestampToDate(vo.getCreateTime()));
|
||||
vo.setPayTime(TimeUtils.timestampToDate(vo.getPayTime()));
|
||||
vo.setPayTime(StringUtils.isNull(vo.getPayTime()) ? "-" : TimeUtils.timestampToDate(vo.getPayTime()));
|
||||
vo.setAvatar(UrlUtils.toAdminAbsoluteUrl(vo.getAvatar()));
|
||||
vo.setPayWay(vo.getPayWay());
|
||||
vo.setPayWayText(PaymentEnum.getPayWayMsg(Integer.parseInt(vo.getPayWay())));
|
||||
|
|
@ -427,6 +427,7 @@ public class FinanceRechargerServiceImpl implements IFinanceRechargerService {
|
|||
mpjQueryWrapper);
|
||||
retList = iPage.getRecords();
|
||||
}
|
||||
System.out.println(retList);
|
||||
for (FinanceRechargeListExportVo vo : retList) {
|
||||
vo.setCreateTime(TimeUtils.timestampToDate(vo.getCreateTime()));
|
||||
vo.setPayTime(TimeUtils.timestampToDate(vo.getPayTime()));
|
||||
|
|
|
|||
|
|
@ -33,7 +33,7 @@ public class FinanceRechargeListExportVo implements Serializable {
|
|||
@ApiModelProperty("账号")
|
||||
@ExcelProperty("账号")
|
||||
@ColumnWidth(50)
|
||||
private String acount;
|
||||
private String account;
|
||||
|
||||
@ApiModelProperty("订单编号")
|
||||
@ExcelProperty("订单编号")
|
||||
|
|
|
|||
Loading…
Reference in New Issue