using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace HH.WMS.Entitys.Dto { public class ZCTransferDto { public ZCTransferDto() { moveStockEnableAms = moveStockEnableAms ?? "N"; transferEnableAms = transferEnableAms ?? "N"; } public string itemCode { get; set; } public string itemName { get; set; } public int transferMax { get; set; } public string startArea { get; set; } public string endArea { get; set; } public DateTime startTime { get; set; } public DateTime endTime { get; set; } public string workFlowCode { get; set; } public string workFlowName { get; set; } public string transType { get; set; } public string isTransport { get; set; } public string moveStockEnableAms { get; set; } public string transferEnableAms { get; set; } } }