刘光辉
14 小时以前 34981c30a78e8bbd7791131059a9210f9928b62c
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
package jnpf.dmsEntity.permission.entity;
 
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 lombok.Data;
 
import java.util.Date;
import java.util.UUID;
 
@Data
@TableName("dms_documents")
public class DmsDocumentEntity {
    @TableId(value = "id", type = IdType.INPUT)
    private UUID id;
    @TableField("tenant_id")
    private String tenantId;
    @TableField("folder_id")
    private UUID folderId;
    @TableField("document_no")
    private String documentNo;
    @TableField("name")
    private String name;
    @TableField("document_type")
    private String documentType;
    @TableField("responsible_dept_id")
    private String responsibleDeptId;
    @TableField("created_by")
    private String createdBy;
    @TableField("created_at")
    private Date createdAt;
}