123456789101112131415161718192021222324252627282930313233343536 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace PMS.BusinessModels.CloudMonitorManage
- {
- /// <summary>
- /// 自定义预警
- /// </summary>
- public class CustomAlertModel
- {
- public string ID { get; set; }
- public string 渠道ID { get; set; }
- public string 渠道名称 { get; set; }
- public string 项目ID { get; set; }
- public string 项目名称 { get; set; }
- public string 服务器ID { get; set; }
- public string 服务器名称 { get; set; }
- public string 数据库ID { get; set; }
- public string 数据库名称 { get; set; }
- public int 数据库类型 { get; set; }
- public string 数据库连接串 { get; set; }
- public int 预警类型 { get; set; }
- public string 指标名称 { get; set; }
- public int 频率 { get; set; }
- public int 创建人ID { get; set; }
- public string 创建人名称 { get; set; }
- public DateTime 创建时间 { get; set; }
- public DateTime 最后修改时间 { get; set; }
- public string 数据库查询SQL { get; set; }
- public string 预警通知内容模板 { get; set; }
- public int 是否启用 { get; set; }
- }
- }
|