namespace Win_in.Sfs.Shared.Domain; public interface IHasRawLocation { /// /// 原料库位 /// public string RawLocationCode { get; set; } /// /// 原料库区 /// public string RawLocationArea { get; set; } /// /// 原料库位组 /// public string RawLocationGroup { get; set; } /// /// 原料ERP库位 /// public string RawLocationErpCode { get; set; } /// /// 原料仓库 /// public string RawWarehouseCode { get; set; } }