You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
636 B

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"`
}