17 lines
373 B
Kotlin
17 lines
373 B
Kotlin
package com.example.rehabilitation.Room
|
|
|
|
import androidx.room.ColumnInfo
|
|
import androidx.room.Entity
|
|
import androidx.room.PrimaryKey
|
|
|
|
@Entity(tableName = "ItemProgressAll")
|
|
data class ItemProgressAll(
|
|
@ColumnInfo(name = "date")
|
|
var date:String,
|
|
@ColumnInfo(name = "countAll")
|
|
var countAll:Int,
|
|
@ColumnInfo(name = "category")
|
|
var category:String,
|
|
|
|
)
|