using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DW5S.DTO { /// /// 服务状态信息 /// public class SvrDto { /// /// 服务类型 /// public EnumSvrType SvrType { get; set; } /// /// 服务ID /// public string SvrID { get; set; } /// /// 服务Http基地址 /// public string BaseHttpAddr { get; set; } /// ///接口地址 /// public string SwaggerAddr { get; set; } /// /// 状态上报时间 /// public DateTimeOffset ReportTime { get; set; } } }