Revert "CombineDocumentEntity作成"

This reverts commit 74563f75b1.
This commit is contained in:
r-ca 2024-01-27 17:03:46 +09:00
parent 74563f75b1
commit a187ef3523
No known key found for this signature in database
GPG Key ID: 6A72911AC73464A9

View File

@ -1,30 +0,0 @@
package one.nem.lacerta.source.database.entity;
import androidx.annotation.NonNull;
import androidx.room.ColumnInfo;
import androidx.room.Entity;
import androidx.room.PrimaryKey;
@Entity(tableName = "combine_document")
public class CombineDocumentEntity {
@PrimaryKey
@ColumnInfo(name = "id")
@NonNull
public String id; // ドキュメントID
@ColumnInfo(name = "title")
public String title; // タイトル
@ColumnInfo(name = "created_at")
public String createdAt; // 作成日時
@ColumnInfo(name = "updated_at")
public String updatedAt; // 更新日時
@ColumnInfo(name = "author")
public String author; // 作成者
@ColumnInfo(name = "parent_id")
public String parentId; // 親フォルダID
}