cloudroam
2025-03-06 66c61a1451a177bbe465f763afdffa3bcfe2ce56
app/src/main/java/com/example/firstapp/model/CourierStat.kt
@@ -4,12 +4,12 @@
@DatabaseView(
    """
    SELECT category, COUNT(*) as count
    SELECT type as courierName, COUNT(*) as count
    FROM Code 
    GROUP BY category
    GROUP BY type
    """
)
data class CourierStat(
    val category: String,
    val courierName: String,
    val count: Int
)
)