Converter追加

This commit is contained in:
r-ca 2024-01-13 15:51:35 +09:00
parent e848f40b8b
commit a7195c4079
No known key found for this signature in database
GPG Key ID: 6A72911AC73464A9

View File

@ -3,10 +3,14 @@ package one.nem.lacerta.source.database.entity;
import androidx.room.ColumnInfo; import androidx.room.ColumnInfo;
import androidx.room.Entity; import androidx.room.Entity;
import androidx.room.PrimaryKey; import androidx.room.PrimaryKey;
import androidx.room.TypeConverters;
import java.util.Date; import java.util.Date;
import one.nem.lacerta.source.database.common.DateTypeConverter;
@Entity(tableName = "vcs_log") @Entity(tableName = "vcs_log")
@TypeConverters({DateTypeConverter.class})
public class VcsLogEntity { public class VcsLogEntity {
/** /**