package common_models import "time" // EsGroupTheme 分组主题数据结构体 type EsGroupTheme struct { Structure int `json:"structure"` GroupId int `json:"group_id"` GroupName string `json:"group_name"` Factor int `json:"factor"` FactorName string `json:"factor_name"` FactorProtoCode string `json:"factor_proto_code"` FactorProtoName string `json:"factor_proto_name"` Data map[string]any `json:"data"` CollectTime time.Time `json:"collect_time"` CreateTime time.Time `json:"create_time"` }