package com.nuvole.four.domain;
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import org.springframework.format.annotation.DateTimeFormat;
|
|
import java.util.Date;
|
|
/**
|
* 实体类对应的数据表为: store_member_info
|
* @author system-generator
|
* @date 2020-07-31 09:50:29
|
*/
|
@ApiModel(value ="会员信息表")
|
public class StoreMemberInfo {
|
@ApiModelProperty(value = "id")
|
private Long id;
|
|
@ApiModelProperty(value = "会员名称")
|
private String memberNameEncrypt;
|
|
@ApiModelProperty(value = "会员名称脱敏")
|
private String memberName;
|
|
@ApiModelProperty(value = "会员类型 1普通会员 2 客户经理")
|
private Short memberType;
|
|
@ApiModelProperty(value = "身份证号MD5密文")
|
private String idcardEncryptMd5;
|
|
@ApiModelProperty(value = "身份证密文")
|
private String idcardEncrypt;
|
|
@ApiModelProperty(value = "身份证脱敏")
|
private String idcard;
|
|
@ApiModelProperty(value = "手机号密文")
|
private String mobileEncrypt;
|
|
@ApiModelProperty(value = "手机号脱敏")
|
private String mobile;
|
|
@ApiModelProperty(value = "头像")
|
private String headImage;
|
|
@ApiModelProperty(value = "锁定次数")
|
private Short lockTimes;
|
|
@ApiModelProperty(value = "锁定到期日期")
|
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
private Date lockTime;
|
|
@ApiModelProperty(value = "用户唯一标识(微信小程序openid)")
|
private String wechatOpenid;
|
|
@ApiModelProperty(value = "支付宝userID")
|
private String aliUserId;
|
|
@ApiModelProperty(value = "支付宝唯一凭证(支付宝公众平台unionid)")
|
private String aliUnionid;
|
|
@ApiModelProperty(value = "用户唯一标识(支付宝小程序openid)")
|
private String aliOpenid;
|
|
@ApiModelProperty(value = "支付宝openId(公众号)")
|
private String aliH5Openid;
|
|
@ApiModelProperty(value = "翼支付userID")
|
private String bestPayUserId;
|
|
@ApiModelProperty(value = "云闪付userID")
|
private String cloudPayUserId;
|
|
@ApiModelProperty(value = "用户唯一标识(公众号openid)")
|
private String wechatH5Openid;
|
|
@ApiModelProperty(value = "微信唯一凭证(微信公众平台unionid)")
|
private String wechatUnionid;
|
|
@ApiModelProperty(value = "微信头像")
|
private String wechatHeadImage;
|
|
@ApiModelProperty(value = "会员昵称")
|
private String nickName;
|
|
@ApiModelProperty(value = "机构id")
|
private Long orgId;
|
|
@ApiModelProperty(value = "机构编号")
|
private String orgCode;
|
|
@ApiModelProperty(value = "机构全名称")
|
private String orgFullName;
|
|
@ApiModelProperty(value = "金融等级【数据字典】")
|
private String financeLv;
|
|
@ApiModelProperty(value = "区域id")
|
private Long areaId;
|
|
@ApiModelProperty(value = "区域code")
|
private String areaCode;
|
|
@ApiModelProperty(value = "区域全名称")
|
private String areaFullName;
|
|
@ApiModelProperty(value = "客户经理名称")
|
private String managerName;
|
|
@ApiModelProperty(value = "客户经理id")
|
private Long managerId;
|
|
@ApiModelProperty(value = "会员积分")
|
private Long memberScore;
|
|
@ApiModelProperty(value = "平台消耗积分")
|
private Long costScore;
|
|
@ApiModelProperty(value = "存量积分")
|
private Long stockScore;
|
|
@ApiModelProperty(value = "会员币")
|
private Integer coin;
|
|
@ApiModelProperty(value = "创建时间")
|
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
private Date createTime;
|
|
@ApiModelProperty(value = "状态(0 禁用,1启用)")
|
private Short state;
|
|
@ApiModelProperty(value = "云商通用户唯一标识(如果为空代表没在云商通创建会员) ")
|
private String yunstuserid;
|
|
@ApiModelProperty(value = "推广人id")
|
private Long pushwidemanid;
|
|
@ApiModelProperty(value = "人才id")
|
private String talentId;
|
@ApiModelProperty(value = "出生日期")
|
private Integer birthday;
|
@ApiModelProperty(value = "性别 0男1女")
|
private Integer sex;
|
@ApiModelProperty(value = "人才类型")
|
private String talentType;
|
@ApiModelProperty(value = "人才类型标签")
|
private String talentTypeLabel;
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public String getMemberNameEncrypt() {
|
return memberNameEncrypt;
|
}
|
|
public void setMemberNameEncrypt(String memberNameEncrypt) {
|
this.memberNameEncrypt = memberNameEncrypt == null ? null : memberNameEncrypt.trim();
|
}
|
|
public String getMemberName() {
|
return memberName;
|
}
|
|
public void setMemberName(String memberName) {
|
this.memberName = memberName == null ? null : memberName.trim();
|
}
|
|
public Short getMemberType() {
|
return memberType;
|
}
|
|
public void setMemberType(Short memberType) {
|
this.memberType = memberType;
|
}
|
|
public String getIdcardEncryptMd5() {
|
return idcardEncryptMd5;
|
}
|
|
public void setIdcardEncryptMd5(String idcardEncryptMd5) {
|
this.idcardEncryptMd5 = idcardEncryptMd5 == null ? null : idcardEncryptMd5.trim();
|
}
|
|
public String getIdcardEncrypt() {
|
return idcardEncrypt;
|
}
|
|
public void setIdcardEncrypt(String idcardEncrypt) {
|
this.idcardEncrypt = idcardEncrypt == null ? null : idcardEncrypt.trim();
|
}
|
|
public String getIdcard() {
|
return idcard;
|
}
|
|
public void setIdcard(String idcard) {
|
this.idcard = idcard == null ? null : idcard.trim();
|
}
|
|
public String getMobileEncrypt() {
|
return mobileEncrypt;
|
}
|
|
public void setMobileEncrypt(String mobileEncrypt) {
|
this.mobileEncrypt = mobileEncrypt == null ? null : mobileEncrypt.trim();
|
}
|
|
public String getMobile() {
|
return mobile;
|
}
|
|
public void setMobile(String mobile) {
|
this.mobile = mobile == null ? null : mobile.trim();
|
}
|
|
public String getHeadImage() {
|
return headImage;
|
}
|
|
public void setHeadImage(String headImage) {
|
this.headImage = headImage == null ? null : headImage.trim();
|
}
|
|
public Short getLockTimes() {
|
return lockTimes;
|
}
|
|
public void setLockTimes(Short lockTimes) {
|
this.lockTimes = lockTimes;
|
}
|
|
@JsonFormat(locale = "zh", timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
|
public Date getLockTime() {
|
return lockTime;
|
}
|
|
public void setLockTime(Date lockTime) {
|
this.lockTime = lockTime;
|
}
|
|
public String getWechatOpenid() {
|
return wechatOpenid;
|
}
|
|
public void setWechatOpenid(String wechatOpenid) {
|
this.wechatOpenid = wechatOpenid == null ? null : wechatOpenid.trim();
|
}
|
|
public String getWechatH5Openid() {
|
return wechatH5Openid;
|
}
|
|
public void setWechatH5Openid(String wechatH5Openid) {
|
this.wechatH5Openid = wechatH5Openid;
|
}
|
|
public String getWechatUnionid() {
|
return wechatUnionid;
|
}
|
|
public void setWechatUnionid(String wechatUnionid) {
|
this.wechatUnionid = wechatUnionid == null ? null : wechatUnionid.trim();
|
}
|
|
public String getWechatHeadImage() {
|
return wechatHeadImage;
|
}
|
|
public void setWechatHeadImage(String wechatHeadImage) {
|
this.wechatHeadImage = wechatHeadImage == null ? null : wechatHeadImage.trim();
|
}
|
|
public String getNickName() {
|
return nickName;
|
}
|
|
public void setNickName(String nickName) {
|
this.nickName = nickName == null ? null : nickName.trim();
|
}
|
|
public Long getOrgId() {
|
return orgId;
|
}
|
|
public void setOrgId(Long orgId) {
|
this.orgId = orgId;
|
}
|
|
public String getOrgCode() {
|
return orgCode;
|
}
|
|
public void setOrgCode(String orgCode) {
|
this.orgCode = orgCode == null ? null : orgCode.trim();
|
}
|
|
public String getOrgFullName() {
|
return orgFullName;
|
}
|
|
public void setOrgFullName(String orgFullName) {
|
this.orgFullName = orgFullName == null ? null : orgFullName.trim();
|
}
|
|
public String getFinanceLv() {
|
return financeLv;
|
}
|
|
public void setFinanceLv(String financeLv) {
|
this.financeLv = financeLv == null ? null : financeLv.trim();
|
}
|
|
public Long getAreaId() {
|
return areaId;
|
}
|
|
public void setAreaId(Long areaId) {
|
this.areaId = areaId;
|
}
|
|
public String getAreaCode() {
|
return areaCode;
|
}
|
|
public void setAreaCode(String areaCode) {
|
this.areaCode = areaCode == null ? null : areaCode.trim();
|
}
|
|
public String getAreaFullName() {
|
return areaFullName;
|
}
|
|
public void setAreaFullName(String areaFullName) {
|
this.areaFullName = areaFullName == null ? null : areaFullName.trim();
|
}
|
|
public String getManagerName() {
|
return managerName;
|
}
|
|
public void setManagerName(String managerName) {
|
this.managerName = managerName == null ? null : managerName.trim();
|
}
|
|
public Long getManagerId() {
|
return managerId;
|
}
|
|
public void setManagerId(Long managerId) {
|
this.managerId = managerId;
|
}
|
|
public Long getMemberScore() {
|
return memberScore;
|
}
|
|
public void setMemberScore(Long memberScore) {
|
this.memberScore = memberScore;
|
}
|
|
public Long getCostScore() {
|
return costScore;
|
}
|
|
public void setCostScore(Long costScore) {
|
this.costScore = costScore;
|
}
|
|
public Long getStockScore() {
|
return stockScore;
|
}
|
|
public void setStockScore(Long stockScore) {
|
this.stockScore = stockScore;
|
}
|
|
public Integer getCoin() {
|
return coin;
|
}
|
|
public void setCoin(Integer coin) {
|
this.coin = coin;
|
}
|
|
@JsonFormat(locale = "zh", timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
|
public Date getCreateTime() {
|
return createTime;
|
}
|
|
public void setCreateTime(Date createTime) {
|
this.createTime = createTime;
|
}
|
|
public Short getState() {
|
return state;
|
}
|
|
public void setState(Short state) {
|
this.state = state;
|
}
|
|
public String getYunstuserid() {
|
return yunstuserid;
|
}
|
|
public void setYunstuserid(String yunstuserid) {
|
this.yunstuserid = yunstuserid == null ? null : yunstuserid.trim();
|
}
|
|
public Long getPushwidemanid() {
|
return pushwidemanid;
|
}
|
|
public void setPushwidemanid(Long pushwidemanid) {
|
this.pushwidemanid = pushwidemanid;
|
}
|
|
public String getTalentId() {
|
return talentId;
|
}
|
|
public void setTalentId(String talentId) {
|
this.talentId = talentId;
|
}
|
|
public Integer getBirthday() {
|
return birthday;
|
}
|
|
public void setBirthday(Integer birthday) {
|
this.birthday = birthday;
|
}
|
|
public Integer getSex() {
|
return sex;
|
}
|
|
public void setSex(Integer sex) {
|
this.sex = sex;
|
}
|
|
public String getTalentType() {
|
return talentType;
|
}
|
|
public void setTalentType(String talentType) {
|
this.talentType = talentType;
|
}
|
|
public String getTalentTypeLabel() {
|
return talentTypeLabel;
|
}
|
|
public void setTalentTypeLabel(String talentTypeLabel) {
|
this.talentTypeLabel = talentTypeLabel;
|
}
|
|
public String getAliUserId() {
|
return aliUserId;
|
}
|
|
public void setAliUserId(String aliUserId) {
|
this.aliUserId = aliUserId;
|
}
|
|
public String getAliUnionid() {
|
return aliUnionid;
|
}
|
|
public void setAliUnionid(String aliUnionid) {
|
this.aliUnionid = aliUnionid;
|
}
|
|
public String getAliOpenid() {
|
return aliOpenid;
|
}
|
|
public void setAliOpenid(String aliOpenid) {
|
this.aliOpenid = aliOpenid;
|
}
|
|
public String getAliH5Openid() {
|
return aliH5Openid;
|
}
|
|
public void setAliH5Openid(String aliH5Openid) {
|
this.aliH5Openid = aliH5Openid;
|
}
|
|
public String getBestPayUserId() {
|
return bestPayUserId;
|
}
|
|
public void setBestPayUserId(String bestPayUserId) {
|
this.bestPayUserId = bestPayUserId;
|
}
|
|
public String getCloudPayUserId() {
|
return cloudPayUserId;
|
}
|
|
public void setCloudPayUserId(String cloudPayUserId) {
|
this.cloudPayUserId = cloudPayUserId;
|
}
|
}
|