| | |
| | | import com.baomidou.mybatisplus.annotations.TableName; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import org.springframework.beans.factory.annotation.Value; |
| | | import org.springframework.format.annotation.DateTimeFormat; |
| | | |
| | | import java.io.Serializable; |
| | | |
| | |
| | | */ |
| | | private Integer integral; |
| | | /** |
| | | * 剩余积分 |
| | | */ |
| | | private Double score; |
| | | /** |
| | | * 状态(1=正常,2=冻结,3=删除) |
| | | */ |
| | | private Integer status; |
| | |
| | | |
| | | @ApiModelProperty(value = "后台充值余额") |
| | | private BigDecimal backgroundBalance; |
| | | @ApiModelProperty(value = "优惠券余额") |
| | | private BigDecimal couponBalance; |
| | | @ApiModelProperty(value = "启用冻结理由") |
| | | private String remark; |
| | | |
| | |
| | | private String areaName; |
| | | |
| | | @ApiModelProperty(value = "驾驶证初次领证时间") |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | 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 BigDecimal getCouponBalance() { |
| | | return couponBalance; |
| | | } |
| | | |
| | | public void setCouponBalance(BigDecimal couponBalance) { |
| | | this.couponBalance = couponBalance; |
| | | } |
| | | |
| | | 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; |