xiaoyong931011
2021-07-07 6c5a9e94f11c5ce05336303129a21886383967a6
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
package com.xzx.gc.model.admin;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.io.Serializable;
 
@Data
public class PlatformAccountLogModel implements Serializable {
 
    private static final long serialVersionUID = -5117685725640232978L;
 
    Long id;
    String flowNo;
    @ApiModelProperty(value="1:充值,2:提现10分享返利 11阶梯返利 12红包",required=true)
    String type;
    String createTime;
    String oldMoney;
    @ApiModelProperty(value="账号余额",required=true)
    String money;
    @ApiModelProperty(value="环保币余额",required=true)
    String hbb;
    String newMoney;
    String oldHbb;
    String newHbb;
    String createUserId;
    @ApiModelProperty(value="操作人用户类型 1:普通用户 2平台用户",required=true)
    String  createUserType;
    @ApiModelProperty(value="操作人名字",required=true)
    String createUserName;
    String createUserMobile;
    String startTime;
    String endTime;
    int page;
    int limit;
}