1234567891011121314151617181920212223242526272829303132333435363738 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace NXWMS.Client.Model.AppModels.Result.Instock
- {
- public class WmsInPutAwayResult
- {
- public int PUTAWAY_ID { get; set; }
- public string NEWID { get; set; }
- public string PUTAWAY_NO { get; set; }
- public string SOURCE_NO { get; set; }
- public int PUTAWAY_TYPE { get; set; }
- public string PUTAWAY_TYPE_NAME { get; set; }
- public string TRAY_CODE { get; set; }
- public string PALLET_CODE { get; set; }
- public string SBIN_CODE { get; set; }
- public string EBIN_CODE { get; set; }
- public int PUTAWAY_PRIORITY { get; set; }
- public int PUTAWAY_STATUS { get; set; }
- public string PUTAWAY_STATUS_NAME { get; set; }
- public string DESCRIBE { get; set; }
- public int CREATE_BY { get; set; }
- public string CREATE_NAME { get; set; }
- public DateTime CREATE_TIME { get; set; }
- public int UPDATE_BY { get; set; }
- public string UPDATE_NAME { get; set; }
- public DateTime UPDATE_TIME { get; set; }
- public int DATA_VERSION { 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; }
- }
- }
|