using Newtonsoft.Json; namespace Vo.Admin { /// /// 详情 /// public class GetServerQueryVo { /// /// ID /// public int id { get; set; } /// /// 服务器名称 /// public string serverName { get; set; } /// /// 服务器类型 /// public int serverType { get; set; } /// /// 云平台名称 /// public string cloudName { get; set; } /// /// 地址 /// public string hostAddress { get; set; } /// /// 端口 /// public int port { get; set; } /// /// 账号 /// public string username { get; set; } /// /// 操作系统 /// public string operatingSystem { get; set; } /// /// 操作系统版本 /// public string operationSystemVersion { get; set; } /// /// 项目ID /// public int projectId { get; set; } } }