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.
30 lines
619 B
30 lines
619 B
2 years ago
|
namespace Win_in.Sfs.Shared.Domain;
|
||
|
|
||
|
public interface IHasRawLocation
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 原料库位
|
||
|
/// </summary>
|
||
|
public string RawLocationCode { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 原料库区
|
||
|
/// </summary>
|
||
|
public string RawLocationArea { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 原料库位组
|
||
|
/// </summary>
|
||
|
public string RawLocationGroup { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 原料ERP库位
|
||
|
/// </summary>
|
||
|
public string RawLocationErpCode { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 原料仓库
|
||
|
/// </summary>
|
||
|
public string RawWarehouseCode { get; set; }
|
||
|
}
|