using System;
|
|
namespace Model
|
{
|
public class DepotsArea
|
{
|
public int ID { get; set; }
|
|
public string DepotsCode { get; set; }
|
|
public string DepotsName { get; set; }
|
|
public string RegionID { get; set; }
|
public string RegionName { get; set; }
|
|
public int DepotsRow { get; set; }
|
public int DepotsColumn { get; set; }
|
public int DepotsLayer { get; set; }
|
|
public string InStorageLocation { get; set; }
|
|
public string OutStorageLocation { get; set; }
|
|
public string Demo { get; set; }
|
|
public int IsDel { get; set; }
|
|
public string Guid { get; set; }
|
|
public DateTime CreatTime { get; set; }
|
|
public string CreatUser { get; set; }
|
|
public DateTime UpdateTime { get; set; }
|
|
public string UpdateUser { get; set; }
|
|
}
|
|
public class QueryDepotsArea : DepotsArea
|
{
|
public int pageIndex { get; set; }
|
public int pageSize { get; set; }
|
}
|
|
public class SetDepotsArea : DepotsArea
|
{
|
public string Operation { get; set; }
|
}
|
}
|