jiangping
2025-07-15 368f3110e639b121bd389cae63ced823582de0c9
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
package com.doumee.dao.business.model;
 
import com.doumee.core.annotation.excel.ExcelColumn;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
import com.fasterxml.jackson.annotation.JsonFormat;
import java.util.Date;
 
/**
 * 提现申请记录
 * @author 江蹄蹄
 * @date 2025/07/09 12:00
 */
@Data
@ApiModel("提现申请记录")
@TableName("`withdrawal_orders`")
public class WithdrawalOrders {
 
    @ApiModelProperty(value = "主键", example = "1")
    @ExcelColumn(name="主键")
    private Integer id;
 
    @ApiModelProperty(value = "是否已删除 0未删除 1已删除", example = "1")
    @ExcelColumn(name="是否已删除 0未删除 1已删除")
    private Byte deleted;
 
    @ApiModelProperty(value = "创建人编码", example = "1")
    @ExcelColumn(name="创建人编码")
    private Integer createUser;
 
    @ApiModelProperty(value = "创建时间")
    @ExcelColumn(name="创建时间")
    @JsonFormat(pattern = "yyyy-MM-dd")
    private Date createTime;
 
    @ApiModelProperty(value = "更新人编码", example = "1")
    @ExcelColumn(name="更新人编码")
    private Integer updateUser;
 
    @ApiModelProperty(value = "更新时间")
    @ExcelColumn(name="更新时间")
    @JsonFormat(pattern = "yyyy-MM-dd")
    private Date updateTime;
 
    @ApiModelProperty(value = "备注")
    @ExcelColumn(name="备注")
    private String remark;
 
    @ApiModelProperty(value = "会员主键", example = "1")
    @ExcelColumn(name="会员主键")
    private Integer memberId;
 
    @ApiModelProperty(value = "提现金额(单位:分)", example = "1")
    @ExcelColumn(name="提现金额(单位:分)")
    private Long amount;
 
    @ApiModelProperty(value = "微信平台交易订单号")
    @ExcelColumn(name="微信平台交易订单号")
    private String wxExternalNo;
 
    @ApiModelProperty(value = "状态:0=提现申请中:1=提现成功;2=提现失败;", example = "1")
    @ExcelColumn(name="状态:0=提现申请中:1=提现成功;2=提现失败;")
    private Integer status;
 
    @ApiModelProperty(value = "提现完成时间")
    @ExcelColumn(name="提现完成时间")
    @JsonFormat(pattern = "yyyy-MM-dd")
    private Date doneTime;
 
    @ApiModelProperty(value = "完成备注")
    @ExcelColumn(name="完成备注")
    private String doneInfo;
 
 
    @ApiModelProperty(value = "业务类型:0=提现;1=退款;", example = "1")
    @ExcelColumn(name="业务类型:0=提现;1=退款;")
    private Integer type;
 
    @ApiModelProperty(value = "关联订单主键 orders", example = "1")
    @ExcelColumn(name="关联订单主键 orders")
    private Integer objId;
}