using System;
|
using System.Linq;
|
using System.Text;
|
using SqlSugar;
|
|
namespace WMS.Entity.BllMoveEntity
|
{
|
///<summary>
|
///移库表
|
///</summary>
|
[SugarTable("BllPalletMove")]
|
public class BllPalletMove:BaseEntity
|
{
|
/// <summary>
|
/// Desc:单号
|
/// Default:
|
/// Nullable:True
|
/// </summary>
|
public string PMNo {get;set;}
|
|
/// <summary>
|
/// Desc:移出库房号
|
/// Default:
|
/// Nullable:True
|
/// </summary>
|
public string OutWareHouseNo {get;set;}
|
|
/// <summary>
|
/// Desc:移出库区号
|
/// Default:
|
/// Nullable:True
|
/// </summary>
|
public string OutAreaNo {get;set;}
|
|
/// <summary>
|
/// Desc:移出巷道号
|
/// Default:
|
/// Nullable:True
|
/// </summary>
|
public string OutRoadwayNo {get;set;}
|
|
/// <summary>
|
/// Desc:移出储位号
|
/// Default:
|
/// Nullable:True
|
/// </summary>
|
public string OutLocatNo {get;set;}
|
|
/// <summary>
|
/// Desc:移入库房号
|
/// Default:
|
/// Nullable:True
|
/// </summary>
|
public string InWareHouseNo {get;set;}
|
|
/// <summary>
|
/// Desc:移入库区号
|
/// Default:
|
/// Nullable:True
|
/// </summary>
|
public string InAreaNo {get;set;}
|
|
/// <summary>
|
/// Desc:移入巷道号
|
/// Default:
|
/// Nullable:True
|
/// </summary>
|
public string InRoadwayNo {get;set;}
|
|
/// <summary>
|
/// Desc:移入储位号
|
/// Default:
|
/// Nullable:True
|
/// </summary>
|
public string InLocatNo {get;set;}
|
|
/// <summary>
|
/// Desc:状态
|
/// Default:
|
/// Nullable:True
|
/// </summary>
|
public string Status {get;set;}
|
|
}
|
}
|