using System.Collections; using System.Collections.Generic; public class MyData { } /// /// 暂存信息类 /// public class MyTmpSaveInfo { /// /// /// public string id { get; set; } /// /// /// public string componentId { get; set; } /// /// /// public string componentParentId { get; set; } /// /// /// public string taskId { get; set; } /// /// /// public string userId { get; set; } /// /// /// public string dataType { get; set; } /// /// /// public string dataContent { get; set; } /// /// /// public string intCol1 { get; set; } /// /// /// public string intCol2 { get; set; } /// /// /// public string intCol3 { get; set; } /// /// /// public string intCol4 { get; set; } /// /// /// public string intCol5 { get; set; } /// /// /// public string varcharCol1 { get; set; } /// /// /// public string varcharCol2 { get; set; } /// /// /// public string varcharCol3 { get; set; } /// /// /// public string varcharCol4 { get; set; } /// /// /// public string varcharCol5 { get; set; } /// /// /// public string doubleCol1 { get; set; } /// /// /// public string doubleCol2 { get; set; } /// /// /// public string doubleCol3 { get; set; } /// /// /// public string doubleCol4 { get; set; } /// /// /// public string doubleCol5 { get; set; } /// /// /// public string status { get; set; } /// /// /// public string isShare { get; set; } /// /// /// public string createBy { get; set; } /// /// /// public string createTime { get; set; } /// /// /// public string updateBy { get; set; } /// /// /// public string updateTime { get; set; } /// /// /// public string remark { get; set; } } /// /// 组件案例类 /// public class CaseData { /// /// /// public string taskType { get; set; } /// /// /// public string id { get; set; } /// /// /// public string componentId { get; set; } /// /// /// public string componentType { get; set; } /// /// /// public string componentTypeName { get; set; } /// /// /// public string taskName { get; set; } /// /// /// public string taskTeacherUserId { get; set; } /// /// /// public string sceneId { get; set; } /// /// /// public string sceneName { get; set; } /// /// /// public string investigatePoint { get; set; } /// /// /// public string taskDescription { get; set; } /// /// /// public string taskPackageFileName { get; set; } /// /// /// public string taskPackageFileUrl { get; set; } /// /// /// public string sort { get; set; } /// /// /// public string delFlag { get; set; } /// /// /// public string programLanguages { get; set; } /// /// 图片 /// public List fileUrlArray=new List(); }