commit
bad4afb790
@ -0,0 +1,19 @@ |
||||
package io.legado.app.data.dao |
||||
|
||||
import androidx.room.* |
||||
import io.legado.app.data.entities.ReadRecord |
||||
|
||||
@Dao |
||||
interface ReadRecordDao { |
||||
|
||||
@get:Query("select * from readRecord") |
||||
val all: List<ReadRecord> |
||||
|
||||
|
||||
@Insert(onConflict = OnConflictStrategy.REPLACE) |
||||
fun insert(vararg readRecord: ReadRecord) |
||||
|
||||
@Update |
||||
fun update(vararg record: ReadRecord) |
||||
|
||||
} |
@ -0,0 +1,11 @@ |
||||
package io.legado.app.data.entities |
||||
|
||||
import androidx.room.Entity |
||||
import androidx.room.PrimaryKey |
||||
|
||||
@Entity(tableName = "readRecord") |
||||
data class ReadRecord( |
||||
@PrimaryKey |
||||
val bookName: String = "", |
||||
val readTime: Long = 0L |
||||
) |
Loading…
Reference in new issue