using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace NXWMS.Model.AppModels.Result.Balance { public class WmsStkBalanceResult { public int BALANCE_ID { get; set; } public string NEWID { get; set; } public string AREA_CODE { get; set; } public string AREA_NAME { get; set; } public string WAREHOUSE_CODE { get; set; } public string WAREHOUSE_NAME { get; set; } public string REGION_CODE { get; set; } public string REGION_NAME { get; set; } public string BIN_CODE { get; set; } public string BIN_NAME { get; set; } public int TRAY_ID { get; set; } public string TRAY_CODE { get; set; } public string PALLET_CODE { get; set; } public DateTime INWH_TIME { get; set; } public DateTime OUTWH_TIME { get; set; } public int BALANCE_STATUS { get; set; } public string BALANCE_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; } } }