pull/32/head
kunfei 5 years ago
parent 510aa5b2cc
commit 246009e1a8
  1. 2
      app/src/main/java/io/legado/app/data/dao/SourceCookieDao.kt
  2. 34
      app/src/main/java/io/legado/app/data/entities/BookChapter.kt
  3. 2
      app/src/main/java/io/legado/app/data/entities/SourceCookie.kt

@ -6,7 +6,7 @@ import androidx.room.Query
@Dao @Dao
interface SourceCookieDao { interface SourceCookieDao {
@Query("SELECT cookie FROM cookies Where exploreUrl = :exploreUrl") @Query("SELECT cookie FROM cookies Where url = :url")
fun getCookieByUrl(url: String): String? fun getCookieByUrl(url: String): String?
} }

@ -9,24 +9,24 @@ import kotlinx.android.parcel.Parcelize
@Parcelize @Parcelize
@Entity( @Entity(
tableName = "chapters", tableName = "chapters",
primaryKeys = ["exploreUrl", "bookUrl"], primaryKeys = ["url", "bookUrl"],
indices = [(Index(value = ["exploreUrl"], unique = true)), (Index(value = ["bookUrl", "index"], unique = true))], indices = [(Index(value = ["bookUrl"], unique = true)), (Index(value = ["bookUrl", "index"], unique = true))],
foreignKeys = [(ForeignKey( foreignKeys = [(ForeignKey(
entity = Book::class, entity = Book::class,
parentColumns = ["descUrl"], parentColumns = ["descUrl"],
childColumns = ["bookUrl"], childColumns = ["bookUrl"],
onDelete = ForeignKey.CASCADE onDelete = ForeignKey.CASCADE
))] ))]
) // 删除书籍时自动删除章节 ) // 删除书籍时自动删除章节
data class BookChapter( data class BookChapter(
var url: String = "", // 章节地址 var url: String = "", // 章节地址
var title: String = "", // 章节标题 var title: String = "", // 章节标题
var bookUrl: String = "", // 书籍地址 var bookUrl: String = "", // 书籍地址
var index: Int = 0, // 章节序号 var index: Int = 0, // 章节序号
var resourceUrl: String? = null, // 音频真实URL var resourceUrl: String? = null, // 音频真实URL
var tag: String? = null, // var tag: String? = null, //
var start: Long? = null, // 章节起始位置 var start: Long? = null, // 章节起始位置
var end: Long? = null // 章节终止位置 var end: Long? = null // 章节终止位置
) : Parcelable ) : Parcelable

@ -4,7 +4,7 @@ import androidx.room.Entity
import androidx.room.Index import androidx.room.Index
import androidx.room.PrimaryKey import androidx.room.PrimaryKey
@Entity(tableName = "cookies", indices = [(Index(value = ["exploreUrl"], unique = true))]) @Entity(tableName = "cookies", indices = [(Index(value = ["url"], unique = true))])
data class SourceCookie( data class SourceCookie(
@PrimaryKey @PrimaryKey
var url: String = "", var url: String = "",

Loading…
Cancel
Save