cloudroam
昨天 1a281d8354622a3606360f9f9a7fe4bb7d6a2c3a
app/src/main/java/com/example/firstapp/model/DailyStat.kt
@@ -1,6 +1,8 @@
package com.example.firstapp.model
import androidx.room.DatabaseView
import androidx.room.ColumnInfo
import androidx.room.Ignore
@DatabaseView(
    """
@@ -13,5 +15,6 @@
data class DailyStat(
    val date: String,
    val count: Int,
    val weekStart: Long? = null
    @ColumnInfo(name = "weekStart")
    val weekStart: String? = null
)