package com.xinquan.system.api.domain;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableField;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import com.xinquan.common.core.web.domain.BaseModel;
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
import lombok.EqualsAndHashCode;
|
|
/**
|
* <p>
|
* 用户等级表
|
* </p>
|
*
|
* @author mitao
|
* @since 2024-08-21
|
*/
|
@Data
|
@EqualsAndHashCode(callSuper = true)
|
@TableName("t_user_level_setting")
|
@ApiModel(value="UserLevelSetting对象", description="用户等级表")
|
public class UserLevelSetting extends BaseModel {
|
|
private static final long serialVersionUID = 1L;
|
|
@ApiModelProperty(value = "用户等级id")
|
@TableId(value = "id", type = IdType.AUTO)
|
private Long id;
|
|
@ApiModelProperty(value = "树苗等级类型 1=种子 2=发芽 3=幼苗 4=小树苗 5=中等树苗 6=小树 7=中树 8=大树 9=成熟的大树 10=参天大树")
|
@TableField("tree_level_type")
|
private Integer treeLevelType;
|
|
@ApiModelProperty(value = "等级图标")
|
@TableField("level_icon")
|
private String levelIcon;
|
|
@ApiModelProperty(value = "等级名称")
|
@TableField("level_name")
|
private String levelName;
|
|
@ApiModelProperty(value = "成长值")
|
@TableField("growth_value")
|
private Integer growthValue;
|
|
|
}
|