mitao
2024-08-22 b4e0d41d741448cf03515bc6370db81f1b61f259
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
package com.xinquan.user.domain;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableName;
import com.xinquan.common.core.web.domain.BaseModel;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableField;
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 = "树苗等级id")
    @TableField("tree_level_id")
    private Integer treeLevelId;
 
    @ApiModelProperty(value = "成长值")
    @TableField("growth_value")
    private Integer growthValue;
 
    @ApiModelProperty(value = "当前能量值")
    @TableField("current_energy_value")
    private Integer currentEnergyValue;
 
    @ApiModelProperty(value = "是否重新播种 1=是 2=否")
    @TableField("sow_again")
    private Integer sowAgain;
 
 
}