using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace VueWebApi.Models { public class CapacityPlanSect { public string CapCode { get; set; } //方案编码 public string CapName { get; set; } //方案名称 public string CapStus { get; set; } //选中状态 public List list { get; set; } } }