xuhy
2024-02-29 7c9ec6e5b5ad5e744ddb65f876c4db4c4ae90501
ruoyi-common/src/main/java/com/ruoyi/common/core/domain/entity/SysUser.java
@@ -1,5 +1,6 @@
package com.ruoyi.common.core.domain.entity;
import java.math.BigDecimal;
import java.util.Date;
import java.util.List;
import javax.validation.constraints.*;
@@ -118,10 +119,21 @@
    private Integer ifBlack;
    /**
     * 区县id
     * 会员类型 1=个人会员 2=企业会员 3=普通用户
     */
    @ApiModelProperty(value = "区县id")
    private Integer districtId;
    @ApiModelProperty(value = "会员类型 1=个人会员 2=企业会员 3=普通用户")
    private Integer vipType;
    @ApiModelProperty(value = "注册时间")
    private Date insertTime;
    @ApiModelProperty(value = "首次成为会员时间")
    private Integer firstVipTime;
    @ApiModelProperty(value = "会员开始时间")
    private Integer startTime;
    @ApiModelProperty(value = "会员到期时间")
    private Integer endTime;
    @ApiModelProperty(value = "已消费金额")
    private BigDecimal consumptionAmount;
    @TableField(exist = false)
    private String roleName;
@@ -134,14 +146,6 @@
    public void setRoleName(String roleName) {
        this.roleName = roleName;
    }
    public Integer getDistrictId() {
        return districtId;
    }
    public void setDistrictId(Integer districtId) {
        this.districtId = districtId;
    }
    public SysUser()