zhujie
2025-04-18 88b00f3fc74446a1727c93722c7b64179b45a9db
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
)
)