cloudroam
2025-04-03 97745e7ad15fb3d175f81dfdd2f24269e8fdfefd
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
)
)