using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Model { /// /// 按项目统计 /// public class SpGetInfoCount { /// /// 项目ID /// public string ProjectName { get; set; } /// /// 责任人 /// public string AcceptManName { get; set; } /// /// 重要程度 /// public string ImportanceDegreeName { get; set; } /// /// 总数 /// public int Allcount { get; set; } /// /// 已关闭的数量 /// public int Closecount { get; set; } /// /// 开放的数量 /// public int Opencount { get; set; } /// /// 正在进行的数量 /// public int Proceingcount { get; set; } /// /// 已延期关闭的数量 /// public int Overclosecount { get; set; } /// /// 已延期未关闭的数量 /// public int Overcount { get; set; } } }