| | |
| | | |
| | | |
| | | import cn.afterturn.easypoi.excel.annotation.Excel; |
| | | import com.baomidou.mybatisplus.annotation.IdType; |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import lombok.Data; |
| | | import org.springframework.data.annotation.Transient; |
| | |
| | | @Data |
| | | public class UserRecharge { |
| | | |
| | | @TableId(type= IdType.AUTO) |
| | | private Integer id; |
| | | @Excel(name = "用户id") |
| | | private Integer userId; |
| | |
| | | private String orderDesc; |
| | | |
| | | @Excel(name = "申请时间", databaseFormat = "yyyyMMddHHmmss", format = "yyyy-MM-dd HH:mm:ss") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss" ,timezone = "Asia/Kolkata") |
| | | private Date addTime; |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss" ,timezone = "Asia/Kolkata") |
| | | @Excel(name = "支付时间", databaseFormat = "yyyyMMddHHmmss", format = "yyyy-MM-dd HH:mm:ss") |
| | | private Date payTime; |
| | | |
| | | /*支付通道主键id*/ |
| | | private Integer payId; |
| | | |
| | | |
| | | /** |
| | | * 手机号码 |
| | | * */ |
| | | @Transient |
| | | private String userPhone; |
| | | |
| | | |
| | | |
| | | private String img; |
| | | |
| | | private String channelName; |
| | | |
| | | private String assetsType; |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | } |