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; }