123456789101112131415161718192021222324252627282930313233343536373839 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace NXWMS.Model.AppModels.Result.Instock
- {
- public class WmsInPutAwayResult:BaseModel
- {
- public int PutawayId { get; set; }
- public string Newid { get; set; }
- public string PutawayNo { get; set; }
- public string SourceNo { get; set; }
- public int PutawayType { get; set; }
- public string PutawayTypeName { get; set; }
- public string TrayCode { get; set; }
- public string PalletCode { get; set; }
- public string SbinCode { get; set; }
- public string EbinCode { get; set; }
- public int PutawayPriority { get; set; }
- public int PutawayStatus { get; set; }
- public string PutawayStatusName { get; set; }
- public string Describe { get; set; }
- public int CreateBy { get; set; }
- public string CreateName { get; set; }
- public DateTime CreateTime { get; set; }
- public int UpdateBy { get; set; }
- public string UpdateName { get; set; }
- public DateTime UpdateTime { get; set; }
- public int DataVersion { get; set; }
- public string Remarks1 { get; set; }
- public string Remarks2 { get; set; }
- public string Remarks3 { get; set; }
- public string Remarks4 { get; set; }
- public string Remarks5 { get; set; }
- public List<WmsInPutAwayDtlResult> WmsInPutAwayDtlList { get; set; }
- }
- }
|