/** 查询信息输出 */ export interface ResultOutputListPushDto{ /** 是否成功标记 */ success?: boolean /** 编码 */ code?: string | null /** 消息 */ msg?: string | null /** 数据 */ data?:PushDto[] | null } export interface PushDto{ /** 规则id */ ruleId?: integer /** 推送用户id */ pushUserid?: integer /** 推送用户 */ pushUser?: string /** 推送内容 */ content?: string /** 是否推送 */ isPushed?: boolean /** 推送时间 */ pushTime?: string /** 报警ID */ alarmhistoryID?: integer /** 优先级 */ taskPriority?: integer }