xiaoyong931011
2023-06-20 8fe74ad372762785e8e52d3feb0bb1ead330ed87
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
36
37
38
39
40
41
42
43
package cc.mrbird.febs.mall.entity;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data;
 
import java.math.BigDecimal;
import java.util.Date;
 
@Data
@TableName("member_coin_withdraw")
public class MemberCoinWithdraw {
    private static final long serialVersionUID = 1L;
 
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    private Date createdTime = new Date();
    /**
     * 主键
     */
    @TableId(value = "id",type = IdType.AUTO)
    private Long id;
 
    private String userId;
    /**
     * 提现金额
     */
    private BigDecimal amount;
    /**
     * 1:内转 2:外转提现
     */
    private Integer type;
    /**
     * 提现地址
     */
    private String address;
    /**
     * 1:成功 2:失败 3:进行中
     */
    private Integer state;
 
}