44323
2023-09-20 5771c822e99c38f0484559f1f68843979f0df24b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
package com.dsh.guns.modular.system.model;
 
import lombok.Data;
 
import java.math.BigDecimal;
import java.util.Date;
 
/**
 * 充值记录列表VO
 */
@Data
public class RechargeRecordsVO {
    /**
     *
     *         {title: '所在省市', field: 'provinceAndCity', visible: true, align: 'center', valign: 'middle'},
     *         {title: '充值用户', field: 'name', visible:  true, align: 'center', valign: 'middle'},
     *         {title:  '联系方式', field: 'phone', visible: true, align: 'center', valign: 'middle'},
     *         {title:  '充值时间', field: 'time', visible: true, align: 'center', valign: 'middle'},
     *         {title: '充值金额', field: 'amount', visible: true, align: 'center', valign: 'middle'},
     *         {title: '玩湃币数量', field: 'playPaiCoins', visible: true, align: 'center', valign: 'middle'},
     *         {title: '充值类型', field: 'type', visible: true, align: 'center', valign: 'middle'},
     */
    private Integer id;
    private String provinceAndCity;
    private String name;
    private String phone;
    private Date time;
    private BigDecimal amount;
    private Integer playPaiCoins;
    /**
     * 1 = 会员 2 =非会员
     */
    private Integer type;
 
}