mirror of
https://github.com/lacerta-doc/Lacerta.git
synced 2024-11-23 00:13:16 +00:00
Toxiテーブル作成
This commit is contained in:
parent
217b152c47
commit
e1f2a43d0b
|
@ -0,0 +1,20 @@
|
||||||
|
package one.nem.lacerta.source.database.entity;
|
||||||
|
|
||||||
|
import androidx.room.ColumnInfo;
|
||||||
|
import androidx.room.Entity;
|
||||||
|
|
||||||
|
@Entity(tableName = "toxi_document")
|
||||||
|
public class ToxiDocumentEntity {
|
||||||
|
|
||||||
|
@ColumnInfo(name = "parent_document_id")
|
||||||
|
public String parentDocumentId;
|
||||||
|
|
||||||
|
@ColumnInfo(name = "child_document_id")
|
||||||
|
public String childDocumentId;
|
||||||
|
|
||||||
|
@ColumnInfo(name = "order")
|
||||||
|
public int order;
|
||||||
|
|
||||||
|
@ColumnInfo(name = "is_active")
|
||||||
|
public boolean isActive;
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user