doum
3 天以前 c5c4f201eedfcf374008238dce7afc84f8200ea4
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
package com.doumee.dao.business.model;
 
import com.baomidou.mybatisplus.annotation.TableField;
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;
import java.math.BigDecimal;
/**
 * 订单退款信息表Model定义
 * @author doumee
 * @date 2026-02-06 11:35:16
 */
@Data
@TableName("refund")
@ApiModel(value = "Refund 实体类")
public class Refund  {
 
    @ApiModelProperty("支付状态:0=未支付;1=已支付")
    @ExcelColumn(name="支付状态:0=未支付;1=已支付",index=1 ,width=10)
    @TableId(type = IdType.AUTO)
    private Integer id;
    @ApiModelProperty("是否已删除 0未删除 1已删除")
    @ExcelColumn(name="是否已删除 0未删除 1已删除",index=2 ,width=10)
    private Integer deleted;
    @ApiModelProperty("创建人编码")
    @ExcelColumn(name="创建人编码",index=3 ,width=10)
    private Integer createUser;
    @ApiModelProperty("创建时间")
    @ExcelColumn(name="创建时间",index=4 ,width=10)
    private Date createTime;
    @ApiModelProperty("更新人编码")
    @ExcelColumn(name="更新人编码",index=5 ,width=10)
    private Integer updateUser;
    @ApiModelProperty("更新时间")
    @ExcelColumn(name="更新时间",index=6 ,width=10)
    private Date updateTime;
    @ApiModelProperty("备注")
    @ExcelColumn(name="备注",index=7 ,width=10)
    private String remark;
    @ApiModelProperty("状态:0=处理中;1=成功;2=失败")
    @ExcelColumn(name="状态:0=处理中;1=成功;2=失败",index=8 ,width=10)
    private Integer status;
    @ApiModelProperty("说明")
    @ExcelColumn(name="说明",index=9 ,width=10)
    private String detail;
    @ApiModelProperty("列表图")
    @ExcelColumn(name="列表图",index=10 ,width=10)
    private String imgurl;
    @ApiModelProperty("排序码(升序使用)")
    @ExcelColumn(name="排序码(升序使用)",index=11 ,width=10)
    private Integer sortnum;
    @ApiModelProperty("金额(分)")
    @ExcelColumn(name="金额(分)",index=12 ,width=10)
    private BigDecimal money;
    @ApiModelProperty("当前余额(分)")
    @ExcelColumn(name="当前余额(分)",index=13 ,width=10)
    private BigDecimal banlance;
    @ApiModelProperty("通联交易流水号")
    @ExcelColumn(name="通联交易流水号",index=14 ,width=10)
    private String payOrderId;
    @ApiModelProperty("通联交易流水(微信支付宝等平台交易流水好)")
    @ExcelColumn(name="通联交易流水(微信支付宝等平台交易流水好)",index=15 ,width=10)
    private String payThirdOrderId;
    @ApiModelProperty("支付结果说明")
    @ExcelColumn(name="支付结果说明",index=16 ,width=10)
    private String payInfo;
    @ApiModelProperty("通联交易渠道数据")
    @ExcelColumn(name="通联交易渠道数据",index=17 ,width=10)
    private String payThirdOrderData;
    @ApiModelProperty("通联交易手续费(分)")
    @ExcelColumn(name="通联交易手续费(分)",index=18 ,width=10)
    private String payFee;
    @ApiModelProperty("通联交易平台编号")
    @ExcelColumn(name="通联交易平台编号",index=19 ,width=10)
    private String payCode;
    @ApiModelProperty("订单编码(关联orders)")
    @ExcelColumn(name="订单编码(关联orders)",index=20 ,width=10)
    private Integer orderId;
    @ApiModelProperty("完成时间")
    @ExcelColumn(name="完成时间",index=20 ,width=10)
    private Date payDate;
 
    @ApiModelProperty("开始时间")
    @TableField(exist = false)
    private Date starttime;
    @ApiModelProperty("截止时间")
    @TableField(exist = false)
    private Date endtime;
 
    @ApiModelProperty("付款人姓名")
    @TableField(exist = false)
    private String memberName;
    @ApiModelProperty("付款人姓名")
    @TableField(exist = false)
    private String memberPhone;
    @ApiModelProperty("负责人登陆")
    @TableField(exist = false)
    private String username;
    @ApiModelProperty("负责人姓名")
    @TableField(exist = false)
    private String userRealname;
    @ApiModelProperty("付款事由")
    @TableField(exist = false)
    private Integer orderType;
}