|
@@ -25,7 +25,8 @@ type EventListResp struct {
|
|
// }
|
|
// }
|
|
|
|
|
|
type EventExceptionNumsReq struct {
|
|
type EventExceptionNumsReq struct {
|
|
- AppIds string `form:"app_ids"`
|
|
|
|
|
|
+ AppIds string `form:"app_ids"`
|
|
|
|
+ AppAliases string `form:"app_aliases"`
|
|
models.TimeRange
|
|
models.TimeRange
|
|
dto.Pagination
|
|
dto.Pagination
|
|
}
|
|
}
|
|
@@ -34,6 +35,10 @@ func (r *EventExceptionNumsReq) GetAppIds() []string {
|
|
return strings.Split(r.AppIds, ",")
|
|
return strings.Split(r.AppIds, ",")
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+func (r *EventExceptionNumsReq) GetAppAliases() []string {
|
|
|
|
+ return strings.Split(r.AppAliases, ",")
|
|
|
|
+}
|
|
|
|
+
|
|
type EventExceptionNumsResp struct {
|
|
type EventExceptionNumsResp struct {
|
|
AppId int64 `json:"app_id"`
|
|
AppId int64 `json:"app_id"`
|
|
AppName string `json:"app_name"`
|
|
AppName string `json:"app_name"`
|