| | |
| | | package com.stylefeng.guns.modular.system.model; |
| | | |
| | | import com.baomidou.mybatisplus.annotations.TableField; |
| | | import com.baomidou.mybatisplus.enums.IdType; |
| | | import java.math.BigDecimal; |
| | | import java.util.Date; |
| | | import com.baomidou.mybatisplus.annotations.TableId; |
| | | import com.baomidou.mybatisplus.activerecord.Model; |
| | | import com.baomidou.mybatisplus.annotations.TableName; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import org.springframework.beans.factory.annotation.Value; |
| | | |
| | | import java.io.Serializable; |
| | | |
| | | /** |
| | |
| | | */ |
| | | private Integer integral; |
| | | /** |
| | | * 剩余积分 |
| | | */ |
| | | private Double score; |
| | | /** |
| | | * 状态(1=正常,2=冻结,3=删除) |
| | | */ |
| | | private Integer status; |
| | |
| | | */ |
| | | private Date createTime; |
| | | |
| | | @ApiModelProperty(value = "后台充值余额") |
| | | private BigDecimal backgroundBalance; |
| | | @ApiModelProperty(value = "启用冻结理由") |
| | | private String remark; |
| | | |
| | | /** |
| | | * 是否异常 1正常 2异常 |
| | | */ |
| | | @TableField(value = "isException") |
| | | private Integer isException; |
| | | |
| | | @ApiModelProperty(value = "加盟区域省编号") |
| | | private String provinceCode; |
| | | @ApiModelProperty(value = "加盟区域省名称") |
| | | private String provinceName; |
| | | @ApiModelProperty(value = "加盟区域市编号") |
| | | private String cityCode; |
| | | @ApiModelProperty(value = "加盟区域市名称") |
| | | private String cityName; |
| | | @ApiModelProperty(value = "加盟区域区编号") |
| | | private String areaCode; |
| | | @ApiModelProperty(value = "加盟区域区名称") |
| | | private String areaName; |
| | | |
| | | @ApiModelProperty(value = "驾驶证初次领证时间") |
| | | private Date firstCertificateTime; |
| | | @ApiModelProperty(value = "佣金") |
| | | private BigDecimal commission; |
| | | |
| | | @TableField(exist = false) |
| | | @ApiModelProperty(value = "区域") |
| | | private String area; |
| | | |
| | | @TableField(exist = false) |
| | | @ApiModelProperty(value = "区域id") |
| | | private String areaId; |
| | | |
| | | @TableField(exist = false) |
| | | @ApiModelProperty(value = "邀请人姓名") |
| | | private String inviterName; |
| | | |
| | | @TableField(exist = false) |
| | | @ApiModelProperty(value = "邀请人电话") |
| | | private String inviterPhone; |
| | | |
| | | |
| | | public String getInviterName() { |
| | | return inviterName; |
| | | } |
| | | |
| | | public void setInviterName(String inviterName) { |
| | | this.inviterName = inviterName; |
| | | } |
| | | |
| | | public String getInviterPhone() { |
| | | return inviterPhone; |
| | | } |
| | | |
| | | public void setInviterPhone(String inviterPhone) { |
| | | this.inviterPhone = inviterPhone; |
| | | } |
| | | |
| | | public BigDecimal getCommission() { |
| | | return commission; |
| | | } |
| | | |
| | | public void setCommission(BigDecimal commission) { |
| | | this.commission = commission; |
| | | } |
| | | |
| | | public Double getScore() { |
| | | return score; |
| | | } |
| | | |
| | | public void setScore(Double score) { |
| | | this.score = score; |
| | | } |
| | | |
| | | public String getArea() { |
| | | return area; |
| | | } |
| | | |
| | | public void setArea(String area) { |
| | | this.area = area; |
| | | } |
| | | |
| | | public String getAreaId() { |
| | | return areaId; |
| | | } |
| | | |
| | | public void setAreaId(String areaId) { |
| | | this.areaId = areaId; |
| | | } |
| | | |
| | | public Date getFirstCertificateTime() { |
| | | return firstCertificateTime; |
| | | } |
| | | |
| | | public void setFirstCertificateTime(Date firstCertificateTime) { |
| | | this.firstCertificateTime = firstCertificateTime; |
| | | } |
| | | |
| | | public String getProvinceCode() { |
| | | return provinceCode; |
| | | } |
| | | |
| | | public void setProvinceCode(String provinceCode) { |
| | | this.provinceCode = provinceCode; |
| | | } |
| | | |
| | | public String getProvinceName() { |
| | | return provinceName; |
| | | } |
| | | |
| | | public void setProvinceName(String provinceName) { |
| | | this.provinceName = provinceName; |
| | | } |
| | | |
| | | public String getCityCode() { |
| | | return cityCode; |
| | | } |
| | | |
| | | public void setCityCode(String cityCode) { |
| | | this.cityCode = cityCode; |
| | | } |
| | | |
| | | public String getCityName() { |
| | | return cityName; |
| | | } |
| | | |
| | | public void setCityName(String cityName) { |
| | | this.cityName = cityName; |
| | | } |
| | | |
| | | public String getAreaCode() { |
| | | return areaCode; |
| | | } |
| | | |
| | | public void setAreaCode(String areaCode) { |
| | | this.areaCode = areaCode; |
| | | } |
| | | |
| | | public String getAreaName() { |
| | | return areaName; |
| | | } |
| | | |
| | | public void setAreaName(String areaName) { |
| | | this.areaName = areaName; |
| | | } |
| | | |
| | | public Integer getIsException() { |
| | | return isException; |
| | | } |
| | | |
| | | public void setIsException(Integer isException) { |
| | | this.isException = isException; |
| | | } |
| | | |
| | | public String getRemark() { |
| | | return remark; |
| | | } |
| | | |
| | | public void setRemark(String remark) { |
| | | this.remark = remark; |
| | | } |
| | | |
| | | public BigDecimal getBackgroundBalance() { |
| | | return backgroundBalance; |
| | | } |
| | | |
| | | public void setBackgroundBalance(BigDecimal backgroundBalance) { |
| | | this.backgroundBalance = backgroundBalance; |
| | | } |
| | | |
| | | public Integer getId() { |
| | | return id; |