wangmengmeng
2024-12-24 24432a361d5c6bd6f3d8c008693e9f1155d62517
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
package com.dji.sample.manage.model.entity;
 
import com.baomidou.mybatisplus.annotation.*;
import lombok.Data;
 
import java.io.Serializable;
 
@TableName(value = "manage_user")
@Data
public class UserEntity implements Serializable {
 
    @TableId(type = IdType.AUTO)
    private Integer id;
 
    @TableField(value = "user_id")
    private String userId;
 
    @TableField(value = "username")
    private String username;
 
    @TableField(value = "password")
    private String password;
 
    @TableField(value = "workspace_id")
    private String workspaceId;
 
    @TableField(value = "user_type")
    private Integer userType;
 
    @TableField(value = "mqtt_username")
    private String mqttUsername;
 
    @TableField(value = "mqtt_password")
    private String mqttPassword;
 
    @TableField(value = "create_time", fill = FieldFill.INSERT)
    private Long createTime;
 
    @TableField(value = "update_time", fill = FieldFill.INSERT_UPDATE)
    private Long updateTime;
}