using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
|
namespace IWareDataAccess.Entity.Task
|
{
|
public class TaskRecodeWebEntity
|
{
|
public int? id { get; set; }
|
|
public string itemName { get; set; }
|
|
|
public string itemDes { get; set; }
|
|
|
public string sourcePlace { get; set; }
|
|
|
public string toPlace { get; set; }
|
|
public int? taskType { get; set; }
|
|
|
public string taskStatus { get; set; }
|
|
public DateTime? taskCreateTime { get; set; }
|
|
|
public string containerName { get; set; }
|
|
public int? isMainOut { get; set; }
|
|
|
public int? itemCount { get; set; }
|
|
|
public DateTime? createTime { get; set; }
|
|
|
|
public string outOrderCode { get; set; }
|
|
|
public int? type { get; set; }
|
|
public int? enable { get; set; }
|
|
public DateTime? createTimeStart { get; set; }
|
|
public DateTime? createTimeEnd { get; set; }
|
|
public string createUser { get; set; }
|
|
public string inOrderCode { get; set; }
|
|
public int? taskId { get; set; }
|
|
|
public TaskRecodeWebEntity()
|
{
|
enable = 1;
|
}
|
}
|
}
|