xieb
2024-04-25 47ff10d84efb1f08768ba2793d4f06020cd71b57
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
package com.dji.sample.manage.model.entity;
 
import com.baomidou.mybatisplus.annotation.*;
import lombok.Builder;
import lombok.Data;
 
import java.io.Serializable;
 
@TableName(value = "manage_workspace")
@Data
@Builder
public class WorkspaceEntity implements Serializable {
 
    @TableId(type = IdType.AUTO)
    private Integer id;
 
    @TableField(value = "workspace_id")
    private String workspaceId;
 
    @TableField(value = "workspace_name")
    private String workspaceName;
 
    @TableField(value = "workspace_desc")
    private String workspaceDesc;
 
    @TableField(value = "platform_name")
    private String platformName;
 
    @TableField(value = "create_time", fill = FieldFill.INSERT)
    private Long createTime;
 
    @TableField(value = "update_time", fill = FieldFill.INSERT_UPDATE)
    private Long updateTime;
 
    @TableField(value = "bind_code")
    private String bindCode;
}