package response import ( "gitlab.wodcloud.com/smart-operation/so-operation-api/src/bean/entity" ) type AlertListItem struct { entity.AlertList `xorm:"extends"` AlertCondition entity.AlertCondition `json:"alert_condition" xorm:"alert_condition"` } type AlertListList struct { TotalCount int64 `json:"total_count"` List []AlertListItem `json:"list"` }