using System; using System.Collections.Generic; using System.Text; namespace YLShipBuildLandMap.Entity.ViewModel.SystemSetting.Workflow { public class ToDoView { public string toDoID{ get; set; } public string toDoTitle{ get; set; } public string toDoUrl{ get; set; } public string toDoType{ get; set; } public string toDoAttrVal{ get; set; } public string createTimeString{ get; set; } public string userName{ get; set; } public string menuName{ get; set; } public string createUserName{ get; set; } public string pid { get; set; } public string fid { get; set; } public int? status { get; set; } } }