xiaoyong931011
2021-06-24 0155e75a9b1189a7ba805faad55a359b2b8cd259
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
package com.xzx.gc.model.admin;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.io.Serializable;
 
@Data
public class PartnerAccountLogModel implements Serializable {
 
    private static final long serialVersionUID = -5117685725640232978L;
 
    Long id;
    @ApiModelProperty(value="后台账号",required=true)
    String accountId;
    String flowNo;
    @ApiModelProperty(value="1:充值,2:提现10分享返利 11阶梯返利 12红包",required=true)
    String type;
    String createTime;
    String accountMoney;
    @ApiModelProperty(value="账号余额",required=true)
    String money;
    @ApiModelProperty(value="环保币余额",required=true)
    String hbb;
    String userName;
    String userPhone;
    String roleName;
    String approver;
    String approverTime;
    @ApiModelProperty(value="审核状态(1为待审核,2为已审核,3为审核不通过)",required=true)
    String approverStatus;
    @ApiModelProperty(value="删除标示",required=true)
    Integer delFlag;
    @ApiModelProperty(value="修改时间",required=true)
    String updateTime;
    String startTime;
    String endTime;
    String szType;
    @ApiModelProperty(value="用户类型(1:普通用户,2为回收员,3为代丢员,4入库员,5运营员 6推广员)",required=true)
    String userType;
    String ruleId;
    //'原可用额度'
    String oldLimit;
    //'新的可用额度'
    String newLimit;
    //'操作的额度'
    String manageLimit;
    //'原固定额度'
    String oldLimitFix;
    //'操作的固定额度'
    String manageLimitFix;
    //'新的固定额度'
    String newLimitFix;
    //String roleName;
    String typeText;
    int page;
    int limit;
}