using System; namespace HDLCloudMonitor.InfoMonitor.ReqPack { public class MonitorCommonReqPack { /// /// 监控程序的唯一标识 /// public string Guid { get; set; } /// /// 所在服务器IP /// public string IpAddress { get; set; } /// /// 应用程序名称 /// public string ProgramName { get; set; } /// /// 请求类型 /// public ReqType ReqType { get; set; } /// /// 发生时间 /// public DateTime HappenTime { get; set; } /// /// 检测服务器运行状态上报 /// public ServerRunStatusReqPack RunStatus { get; set; } } }