using Org.BouncyCastle.Crypto.Tls;
|
using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
|
namespace Model
|
{
|
public class DepotsLocation
|
{
|
public string Operation { get; set; }
|
public string Guid { get; set; }
|
public string LocationCode { get; set; }
|
public string DepotsAreaID { get; set; }
|
public string DepotsAreaName { get; set; }
|
public string RegionID { get; set; }
|
public string RegionName { get; set; }
|
public int LRow { get; set; }
|
public int LColumn { get; set; }
|
public int LLayer { get; set; }
|
public string UseType { get; set; }
|
public string UseTypeID { get; set; }
|
public string Type { get; set; }
|
public string TypeID { get; set; }
|
public string Property { get; set; }
|
public string PropertyID { get; set; }
|
public string Handle { get; set; }
|
public string HandleID { get; set; }
|
public string TurnoverDemand { get; set; }
|
public string TurnoverDemandID { get; set; }
|
public string Environment { get; set; }
|
public string EnvironmentID { get; set; }
|
public int Weight { get; set; }
|
public int Tray { get; set; }
|
public int Number { get; set; }
|
public int Volume { get; set; }
|
public int Long { get; set; }
|
public int Width { get; set; }
|
public int Height { get; set; }
|
public int X { get; set; }
|
public int Y { get; set; }
|
public int Z { get; set; }
|
public int NumPlies { get; set; }
|
public int IsProduct { get; set; }
|
public int IsBatch { get; set; }
|
public string Demo { get; set; }
|
public DateTime CreatTime { get; set; }
|
public string CreatUser { get; set; }
|
public DateTime UpdateTime { get; set; }
|
public string UpdateUser { get; set; }
|
public int IsDel { get; set; }
|
|
/// <summary>
|
/// 此属性只是托盘出库移库使用
|
/// </summary>
|
public string Palno { get; set; }
|
}
|
|
public class QueryDLocation : DepotsLocation
|
{
|
public int PageIndex { get; set; }
|
public int PageSize { get; set; }
|
}
|
|
public class Dictionary
|
{
|
public string Guid { get; set; }
|
public string Code { get; set; }
|
public string TypeName { get; set; }
|
public string TopCode { get; set; }
|
}
|
}
|