pull/32/head
parent
b78b2e901d
commit
522739a246
@ -0,0 +1,13 @@ |
|||||||
|
package io.legado.app.data.dao |
||||||
|
|
||||||
|
import androidx.room.Insert |
||||||
|
import androidx.room.OnConflictStrategy |
||||||
|
import io.legado.app.data.entities.BookChapter |
||||||
|
|
||||||
|
interface BookChapterDao { |
||||||
|
|
||||||
|
|
||||||
|
@Insert(onConflict = OnConflictStrategy.REPLACE) |
||||||
|
fun insert(vararg bookChapter: BookChapter) |
||||||
|
|
||||||
|
} |
Loading…
Reference in new issue