| package com.xzx.gc.entity;  | 
|   | 
| import io.swagger.annotations.ApiModelProperty;  | 
| import lombok.Data;  | 
|   | 
| import javax.persistence.Id;  | 
| import javax.persistence.Table;  | 
|   | 
| @Data  | 
| @Table(name = "xzx_account_log")  | 
| public class AccountLog {  | 
|     @Id  | 
|     private Integer id;  | 
|   | 
|     private String accountId;  | 
|   | 
|     private String oldMoney;  | 
|   | 
|     private String newMoney;  | 
|   | 
|     private String oldLimit;  | 
|   | 
|     private String newLimit;  | 
|   | 
|     private String oldFixedLimit;  | 
|   | 
|     private String newFixedLimit;  | 
|   | 
|     private String createUserId;  | 
|   | 
|     private String createTime;  | 
|   | 
|     private Short channelType;  | 
|   | 
|     private String orderId;  | 
|   | 
|     @ApiModelProperty("操作的金额")  | 
|     private transient String money;  | 
|   | 
|     @ApiModelProperty("用户ID")  | 
|     private transient String userId;  | 
|   | 
|     @ApiModelProperty("合伙人ID")  | 
|     private transient String partnerId;  | 
|   | 
|     @ApiModelProperty(value = "单个合伙人",hidden = true)  | 
|     private transient  String singlePartnerId;  | 
|   | 
| } |