using Win_in.Sfs.Shared.Domain; namespace Win_in.Sfs.Wms.Job.Domain; /// /// 发货任务明细表 /// public class DeliverJobDetail : SfsJobRecommendDetailEntityBase,IHasToLocation { /// /// 到库位 /// public string ToLocationCode { get; set; } public string ToLocationArea { get; set; } public string ToLocationGroup { get; set; } /// /// 到ERP库位 /// public string ToLocationErpCode { get; set; } /// /// 到仓库 /// public string ToWarehouseCode { get; set; } /// /// 在途库库位 /// public string OnTheWayLocationCode { get; set; } }