package com.xzx.gc.model.admin;
|
|
import com.xzx.gc.model.admin.baseModel.BaseModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
import java.io.Serializable;
|
import java.math.BigDecimal;
|
import java.util.List;
|
|
@Data
|
public class UserModel extends BaseModel {
|
|
|
String userId;
|
/**
|
* 手机号码
|
*/
|
String mobilePhone;
|
/**
|
* 头像,对应图像路径
|
*/
|
String avatar;
|
/**
|
* 登陆账号
|
*/
|
String loginAccount;
|
/**
|
* 密码
|
*/
|
String password;
|
/**
|
* md5盐值
|
*/
|
String salt;
|
/**
|
* 名字
|
*/
|
String name;
|
/**
|
* 昵称
|
*/
|
String nickName;
|
/**
|
* 生日
|
*/
|
String birthday;
|
/**
|
* 性别
|
*/
|
String sex;
|
/*
|
* 用户类型
|
*/
|
String userType;
|
String userTypex;
|
/**
|
* 微信openID
|
*/
|
String openId;
|
/**
|
* 国
|
*/
|
String country;
|
/**
|
* 省
|
*/
|
String province;
|
/**
|
* 城市
|
*/
|
String city;
|
/**
|
* 注册时间
|
*/
|
String registTime;
|
/**
|
* 登陆时间
|
*/
|
String loginTime;
|
@ApiModelProperty("推广人数")
|
Integer extensionNum;
|
@ApiModelProperty("订单数")
|
Integer allOrderNum;
|
@ApiModelProperty("环保金")
|
BigDecimal money;
|
@ApiModelProperty("积分数")
|
BigDecimal collectScore;
|
@ApiModelProperty("推广人电话号码")
|
String tgrPhone;
|
|
@ApiModelProperty("1:已删除 0:未删除")
|
String delFlag;
|
// @ApiModelProperty("1:已删除 0:未删除")
|
Integer orderStatus3;
|
Integer orderStatus5;
|
//入库重量
|
String storageWeight;
|
//入库金额
|
String storageMoney;
|
//订单重量
|
String recycleWeight;
|
//订单金额
|
String recycleMoney;
|
//重量误差
|
String weightError;
|
//金额误差
|
String moneyError;
|
//订单数量
|
Integer orderNum;
|
|
String tgName;
|
|
String yqName;
|
|
String relaPhone;
|
|
String flag;
|
/**
|
* 注册数量
|
*/
|
String registNum;
|
/**
|
* 成交用户量
|
*/
|
String finishNum;
|
/**
|
* 成交率
|
*/
|
String finishRate;
|
/**
|
* 收集用户量
|
*/
|
String unRegistNum;
|
/**
|
* 是否禁用
|
*/
|
String isProhibit;
|
|
String longitude;
|
String latitude;
|
|
String roleIds;
|
String terminalId;
|
String partnerId;
|
String cityId;
|
private Short originType;
|
|
List<String> partnerIds;
|
List<String> townIds;
|
//仓管员4入库员需要关联仓库Id
|
String storageId;
|
String registType;
|
String partnerName;
|
private String orderId;
|
|
@ApiModelProperty("第一次下单时间")
|
private String orderFirstTime;
|
@ApiModelProperty("最近下单时间")
|
private String orderRecentTime;
|
int page;
|
|
int limit;
|
|
@ApiModelProperty("1:导出 0非导出")
|
private int exportFlag;
|
public UserModel(){
|
|
}
|
public UserModel(ExportParamModel exportParamModel){
|
this.page = exportParamModel.getPage();
|
this.limit = exportParamModel.getLimit();
|
this.partnerIds = exportParamModel.getPartnerIds();
|
this.nickName = exportParamModel.getNickName();
|
this.name=exportParamModel.getName();
|
this.mobilePhone = exportParamModel.getMobilePhone();
|
this.userId = exportParamModel.getUserId();
|
this.userType = exportParamModel.getUserType();
|
this.isProhibit = exportParamModel.getIsProhibit();
|
this.partnerId = exportParamModel.getPartnerId();
|
}
|
}
|