init
This commit is contained in:
@@ -4,6 +4,7 @@ import com.baomidou.mybatisplus.annotation.*;
|
||||
import lombok.Data;
|
||||
import lombok.EqualsAndHashCode;
|
||||
import java.io.Serializable;
|
||||
import java.time.LocalDateTime;
|
||||
import java.util.Date;
|
||||
import java.math.BigDecimal;
|
||||
|
||||
@@ -16,14 +17,13 @@ import com.ruoyi.common.core.domain.BaseEntity;
|
||||
* @date 2024-03-28
|
||||
*/
|
||||
@Data
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@TableName("xq_user_status")
|
||||
public class UserStatus extends BaseEntity {
|
||||
public class UserStatus implements Serializable {
|
||||
|
||||
private static final long serialVersionUID=1L;
|
||||
|
||||
/**
|
||||
*
|
||||
*
|
||||
*/
|
||||
@TableId(value = "id")
|
||||
private Long id;
|
||||
@@ -46,6 +46,7 @@ public class UserStatus extends BaseEntity {
|
||||
/**
|
||||
* 谁可查看资料 1-所有用户 2-VIP用户 3-实名用户 4-实名认证且VIP用户
|
||||
*/
|
||||
@Deprecated
|
||||
private Integer showInfo;
|
||||
/**
|
||||
* 是否允许交换手机号
|
||||
@@ -56,4 +57,7 @@ public class UserStatus extends BaseEntity {
|
||||
*/
|
||||
private Integer allowTransWx;
|
||||
|
||||
private LocalDateTime createTime;
|
||||
private LocalDateTime updateTime;
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user