Helius
2021-06-16 5728be2af515b2200e782aa201ca5d4d67d9ea47
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
package com.ibeetl.admin.console.model;
 
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 roleName;
    int page;
    int limit;
}