doum
2025-12-12 dce1e83ec27a066ebc6c17a4ac6d03c9ad6ff703
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
package com.doumee.dao.business.model;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import com.doumee.core.annotation.excel.ExcelColumn;
import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.math.BigDecimal;
import java.util.Date;
 
/**
 * 资金明细信息表
 * @author 江蹄蹄
 * @date 2023/03/21 15:48
 */
@Data
@ApiModel("资金明细信息表")
public class FundMonth {
 
    @ApiModelProperty(value = "主键", example = "1")
    private Integer id;
 
    @ApiModelProperty(value = "创建人编码", example = "1")
    private Integer creator;
 
    @ApiModelProperty(value = "创建时间")
    @ExcelColumn(name="创建时间",index =8)
    
    private Date createDate;
 
    @ApiModelProperty(value = "更新人编码", example = "1")
    private Integer editor;
 
    @ApiModelProperty(value = "更新时间")
    
    private Date editDate;
 
    @ApiModelProperty(value = "是否删除0否 1是", example = "1")
    private Integer isdeleted;
 
    @ApiModelProperty(value = "备注")
    @ExcelColumn(name="平台订单号",index =5)
    private String remark;
 
    @ApiModelProperty(value = "用户编码(关联member表)", example = "1")
    private Integer memberId;
 
    @ApiModelProperty(value = "标题")
    private String title;
 
    @ApiModelProperty(value = "内容")
    @ExcelColumn(name="说明",index =7)
    private String content;
 
    @ApiModelProperty(value = "对象编码 ", example = "1")
    private Integer objId;
 
    @ApiModelProperty(value = "对象类型 0活动报名 1订单 2售后", example = "1")
    private Integer objType;
 
    @ApiModelProperty(value = "收支类型 0收入 1支出", example = "1")
    private Integer type;
 
    @ApiModelProperty(value = "数量", example = "1")
    @ExcelColumn(name="收支金额",index =4)
    private BigDecimal num;
 
    @ApiModelProperty(value = "交易单号(支付宝)")
    @ExcelColumn(name="交易单号",index =6)
    private String orderCode;
 
    @ApiModelProperty(value = "用户昵称")
    @ExcelColumn(name="用户",index =1)
    @TableField(exist = false)
    private String nickName;
 
    @ApiModelProperty(value = "用户头像")
    @TableField(exist = false)
    private String imgurl;
 
    @ApiModelProperty(value = "用户手机号")
    @TableField(exist = false)
    @ExcelColumn(name="手机号",index =2)
    private String phone;
 
    @TableField(exist = false)
    @ExcelColumn(name="收支类型",index =3)
    private String strType;
 
 
    @ApiModelProperty(value = "开始时间 ")
    @TableField(exist = false)
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date starttime;
 
    @ApiModelProperty(value = "结束时间 ")
    @TableField(exist = false)
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date endtime;
 
 
 
 
}