无关风月
2024-11-04 64f7ccb9ef8b5a0618e65cddc14b981c1f108ba3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
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_app_user_tree")
@ApiModel(value="AppUserTree对象", description="用户树苗表")
public class AppUserTree extends BaseModel {
 
    private static final long serialVersionUID = 1L;
 
    @ApiModelProperty(value = "用户树苗id")
    @TableId(value = "id",type = IdType.ASSIGN_ID)
    private Long id;
 
    @ApiModelProperty(value = "用户id")
    @TableField("app_user_id")
    private Long appUserId;
 
    @ApiModelProperty(value = "树苗等级类型 1=种子 2=发芽 3=幼苗 4=小树苗 5=中等树苗 6=小树 7=中树 8=大树 9=成熟的大树 10=参天大树")
    @TableField("tree_level_type")
    private Integer treeLevelType;
 
    @ApiModelProperty(value = "当前树苗成长值")
    @TableField("growth_value")
    private Integer growthValue;
    @ApiModelProperty(value = "升到下一等级成长阈值")
    @TableField(exist = false)
    private Integer nextLevel;
    @ApiModelProperty(value = "是否重新播种 1=是 2=否")
    @TableField("sow_again")
    private Integer sowAgain;
    @ApiModelProperty(value = "是否枯萎 1=是 2=否")
    @TableField("status")
    private Integer status;
    @ApiModelProperty(value = "每日疗愈30分钟是否完成 1是2否")
    @TableField(exist = false)
    private Integer taskOne;
    @ApiModelProperty(value = "当前剩余能量值")
    @TableField(exist = false)
    private Integer energyValue;
    @ApiModelProperty(value = "每日疗愈60分钟是否完成 1是2否")
    @TableField(exist = false)
    private Integer taskTwo;
    @ApiModelProperty(value = "是否完成签到 1是 2否")
    @TableField(exist = false)
    private Integer isSign;
 
 
}