package response import ( "gitlab.wodcloud.com/smart-operation/so-operation-api/src/bean/entity" ) type AlertClassItem struct { entity.AlertClass `xorm:"extends"` } type AlertClassList struct { TotalCount int64 `json:"total_count"` List []AlertClassItem `json:"list"` } type AlertClassNode struct { entity.AlertClass Children []*AlertClassNode `json:"children"` }