mirror of
https://github.com/lacerta-doc/Lacerta.git
synced 2025-01-19 02:43:15 +00:00
source: WIP, 列名の指定を追加した
This commit is contained in:
parent
7c3588275c
commit
984b82d4a1
|
@ -1,20 +1,27 @@
|
||||||
package one.nem.lacerta.source.database.entity;
|
package one.nem.lacerta.source.database.entity;
|
||||||
|
|
||||||
|
import androidx.room.ColumnInfo;
|
||||||
import androidx.room.Entity;
|
import androidx.room.Entity;
|
||||||
import androidx.room.PrimaryKey;
|
import androidx.room.PrimaryKey;
|
||||||
|
|
||||||
@Entity(tableName = "document")
|
@Entity(tableName = "document")
|
||||||
public class Document {
|
public class Document {
|
||||||
@PrimaryKey
|
@PrimaryKey
|
||||||
|
@ColumnInfo(name = "id")
|
||||||
public String id; // ドキュメントID
|
public String id; // ドキュメントID
|
||||||
|
|
||||||
|
@ColumnInfo(name = "title")
|
||||||
public String title; // タイトル
|
public String title; // タイトル
|
||||||
|
|
||||||
|
@ColumnInfo(name = "created_at")
|
||||||
public String createdAt; // 作成日時
|
public String createdAt; // 作成日時
|
||||||
|
|
||||||
|
@ColumnInfo(name = "updated_at")
|
||||||
public String updatedAt; // 更新日時
|
public String updatedAt; // 更新日時
|
||||||
|
|
||||||
|
@ColumnInfo(name = "author")
|
||||||
public String author; // 作成者
|
public String author; // 作成者
|
||||||
|
|
||||||
|
@ColumnInfo(name = "default_branch")
|
||||||
public String defaultBranch; // デフォルトブランチ
|
public String defaultBranch; // デフォルトブランチ
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user