using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IWareDataAccess.Entity.Task { public class SrmTaskWebEntity { public int? mainTask { get; set; } public int? isReleased { get; set; } public DateTime? doTime { get; set; } public DateTime? finishTime { get; set; } public string taskType { get; set; } public int? palletType { get; set; } public int? useSrmId { get; set; } public string toPlace { get; set; } public string sourcePlace { get; set; } public int? hasFinished { get; set; } public int? id { get; set; } public string devName { get; set; } public DateTime? createTimeStart { get; set; } public DateTime? createTimeEnd { get; set; } } }