From d954784593cb24b0455529ea28588a317c5d766f Mon Sep 17 00:00:00 2001 From: luo <2855143437@qq.com> Date: 星期二, 26 九月 2023 17:05:30 +0800 Subject: [PATCH] 9.26 --- cloud-server-management/src/main/java/com/dsh/guns/modular/system/model/RechargeRecordsVO.java | 7 +++++-- 1 files changed, 5 insertions(+), 2 deletions(-) diff --git a/cloud-server-management/src/main/java/com/dsh/guns/modular/system/model/RechargeRecordsVO.java b/cloud-server-management/src/main/java/com/dsh/guns/modular/system/model/RechargeRecordsVO.java index 244fea6..1b092e2 100644 --- a/cloud-server-management/src/main/java/com/dsh/guns/modular/system/model/RechargeRecordsVO.java +++ b/cloud-server-management/src/main/java/com/dsh/guns/modular/system/model/RechargeRecordsVO.java @@ -1,5 +1,6 @@ package com.dsh.guns.modular.system.model; +import com.fasterxml.jackson.annotation.JsonFormat; import lombok.Data; import java.math.BigDecimal; @@ -20,11 +21,13 @@ * {title: '玩湃币数量', field: 'playPaiCoins', visible: true, align: 'center', valign: 'middle'}, * {title: '充值类型', field: 'type', visible: true, align: 'center', valign: 'middle'}, */ - private Integer id; + + @JsonFormat(shape = JsonFormat.Shape.STRING) + private Long id; private String provinceAndCity; private String name; private String phone; - private Date time; + private Date payTime; private BigDecimal amount; private Integer playPaiCoins; /** -- Gitblit v1.7.1