| | |
| | | package com.dsh.guns.modular.system.model; |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import lombok.Data; |
| | | |
| | | import java.math.BigDecimal; |
| | |
| | | * {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; |
| | | /** |
| | | * 1 = 会员 2 =非会员 |
| | | */ |
| | | private Integer type; |
| | | |
| | | private Integer appUserId; |
| | | private Integer state; |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8") |
| | | private Date insertTime; |
| | | private Integer payStatus; |
| | | } |