using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Text; using System.Threading.Tasks; using XdCxRhDW.Dto; using XdCxRhDW.Repostory; namespace XdCxRhDW.App.Model { /// /// 服务状态信息 /// public class ModelSvr { /// /// 服务类型 /// [Display(Name = "服务类型")] public EnumSvrType SvrType { get; set; } /// /// 服务ID /// [Display(Name = "服务ID")] public string SvrID { get; set; } /// /// 服务Http基地址 /// [Display(Name = "服务Http地址",AutoGenerateField =false)] public string BaseHttpAddr { get; set; } /// ///接口地址 /// [Display(Name = "接口地址")] public string SwaggerAddr { get; set; } /// /// 状态上报时间 /// [Display(Name = "状态上报时间")] public DateTimeOffset ReportTime { get; set; } } }