xiaoyong931011
2021-06-24 ccb35b497df342c6de15f3a6be4c065b0ca7f1f1
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
package com.xzx.gc.model.admin;
 
import lombok.Data;
 
import java.io.Serializable;
 
 
/* 
* 账号操作记录表
* gen by Spring Boot2 Admin 2019-12-24
*/
@Data
public class XzxAccountLogModel implements Serializable {
 
    Integer id ;
 
    //账户id
 
     String accountId ;
 
    //原金额
 
     String oldMoney ;
 
    //操作后金额
 
     String newMoney ;
 
    //原可用额度
 
     String oldLimit ;
 
    //现可用额度
 
     String newLimit ;
 
    //原固定额度
 
     String oldFixedLimit ;
 
    //现固定额度
 
     String newFixedLimit ;
 
    //创建人
 
     String createUserId ;
 
    //创建时间
 
     String createTime ;
 
    //操作渠道1:充值 2:提现 3:回收 4入库
 
     Integer channelType ;
 
    //操作订单ID
 
     String orderId ;
 
    public XzxAccountLogModel(){
    }
 
}