You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
736 B
33 lines
736 B
using Win_in.Sfs.Shared.Domain;
|
|
|
|
namespace Win_in.Sfs.Wms.Job.Domain;
|
|
|
|
/// <summary>
|
|
/// 发货任务明细表
|
|
/// </summary>
|
|
public class DeliverJobDetail : SfsJobRecommendDetailEntityBase,IHasToLocation
|
|
{
|
|
/// <summary>
|
|
/// 到库位
|
|
/// </summary>
|
|
public string ToLocationCode { get; set; }
|
|
|
|
public string ToLocationArea { get; set; }
|
|
public string ToLocationGroup { get; set; }
|
|
|
|
/// <summary>
|
|
/// 到ERP库位
|
|
/// </summary>
|
|
public string ToLocationErpCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 到仓库
|
|
/// </summary>
|
|
public string ToWarehouseCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 在途库库位
|
|
/// </summary>
|
|
public string OnTheWayLocationCode { get; set; }
|
|
|
|
}
|
|
|