问题 I have a table with the fields CREATE TABLE app_category_agg ( category text, app_count int, sp_count int, subscriber_count int, window_revenue bigint, top_apps frozen <list<map<text,int>>>, PRIMARY KEY (category) ); when I try to map it to kotlin model @Table("app_category_agg") class AppCategoryAggData { @PrimaryKeyColumn(name = "category", ordinal = 0, type = PrimaryKeyType.PARTITIONED) lateinit var category: String @Column("app_count") var appCount: Int = 0 @Column("sp_count") var spCount