mirror of
https://github.com/lacerta-doc/Lacerta.git
synced 2024-11-30 11:33:15 +00:00
source: WIP, Documentエンティティ作成
This commit is contained in:
parent
02ab3467ed
commit
7c3588275c
|
@ -1,4 +1,20 @@
|
||||||
package one.nem.lacerta.source.database.entity;
|
package one.nem.lacerta.source.database.entity;
|
||||||
|
|
||||||
|
import androidx.room.Entity;
|
||||||
|
import androidx.room.PrimaryKey;
|
||||||
|
|
||||||
|
@Entity(tableName = "document")
|
||||||
public class Document {
|
public class Document {
|
||||||
|
@PrimaryKey
|
||||||
|
public String id; // ドキュメントID
|
||||||
|
|
||||||
|
public String title; // タイトル
|
||||||
|
|
||||||
|
public String createdAt; // 作成日時
|
||||||
|
|
||||||
|
public String updatedAt; // 更新日時
|
||||||
|
|
||||||
|
public String author; // 作成者
|
||||||
|
|
||||||
|
public String defaultBranch; // デフォルトブランチ
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user