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;
|
}
|