using System; using System.Collections.Generic; namespace Vo { public class ProjectVo { //项目Id public int projectId { get; set; } //项目分类Id public int projectType { get; set; } //项目名称 public string projectName { get; set; } //服务集合 public List serverList { get; set; } } public class ServerVo { //服务Id public int serverId { get; set; } //服务名称 public string serverName { get; set; } } }