xuhy
2025-09-28 6938fc63d0662f5807fb92a46280b7eb720f7892
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
package com.ruoyi.system.model;
 
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableLogic;
import com.baomidou.mybatisplus.annotation.TableName;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
 
import java.io.Serializable;
import java.time.LocalDateTime;
 
/**
 * <p>
 * 人员管理
 * </p>
 *
 * @author xiaochen
 * @since 2025-09-28
 */
@Data
@EqualsAndHashCode(callSuper = false)
@TableName("t_app_user")
@ApiModel(value="TAppUser对象", description="人员管理")
public class TAppUser implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
    @TableId("id")
    private String id;
 
    @ApiModelProperty(value = "姓名")
    @TableField("nick_name")
    private String nickName;
 
    @ApiModelProperty(value = "手机号")
    @TableField("phone")
    private String phone;
 
    @ApiModelProperty(value = "登录账号")
    @TableField("account")
    private String account;
 
    @ApiModelProperty(value = "密码")
    @TableField("password")
    private String password;
 
    @ApiModelProperty(value = "分队名称 注册提交时使用")
    @TableField("team_name")
    private String teamName;
 
    @ApiModelProperty(value = "分队id")
    @TableField("team_id")
    private String teamId;
 
    @ApiModelProperty(value = "状态 1=启用 0=禁用")
    @TableField("status")
    private Integer status;
 
    @ApiModelProperty(value = "实训次数")
    @TableField("practical_train_count")
    private Integer practicalTrainCount;
 
    @ApiModelProperty(value = "其他次数")
    @TableField("other_count")
    private Integer otherCount;
 
    @ApiModelProperty(value = "创建时间")
    @TableField("create_time")
    private LocalDateTime createTime;
 
    @ApiModelProperty(value = "修改时间")
    @TableField("update_time")
    private LocalDateTime updateTime;
 
    @ApiModelProperty(value = "创建人")
    @TableField("create_by")
    private String createBy;
 
    @ApiModelProperty(value = "修改人")
    @TableField("update_by")
    private String updateBy;
 
    @ApiModelProperty(value = "是否删除 0=否 1=是")
    @TableField("disabled")
    @TableLogic
    private Integer disabled;
 
 
}