parent
bcb4a0cb8d
commit
c19057c52f
@ -1,4 +1,11 @@ |
|||||||
package io.legado.app.data.entities |
package io.legado.app.data.entities |
||||||
|
|
||||||
class ReadRecord { |
import androidx.room.Entity |
||||||
} |
import androidx.room.PrimaryKey |
||||||
|
|
||||||
|
@Entity |
||||||
|
data class ReadRecord( |
||||||
|
@PrimaryKey |
||||||
|
val bookName: String = "", |
||||||
|
val readTime: Long = 0L |
||||||
|
) |
Loading…
Reference in new issue