cloudroam
6 天以前 6403ddc78af1190995fa4f6335b57b3820fa2fc6
app/src/main/java/com/example/firstapp/model/CourierStat.kt
@@ -4,12 +4,12 @@
@DatabaseView(
    """
    SELECT category, COUNT(*) as count
    SELECT oneLevel as courierName, COUNT(*) as count
    FROM Code 
    GROUP BY category
    GROUP BY oneLevel
    """
)
data class CourierStat(
    val category: String,
    val courierName: String,
    val count: Int
)
)