11 lines
235 B
C#
11 lines
235 B
C#
namespace Tnb.EquipMgr.Interfaces
|
|
{
|
|
/// <summary>
|
|
/// 模具库位服务接口
|
|
/// </summary>
|
|
public interface IToolMoldLocationService
|
|
{
|
|
Task<Dictionary<string, object>> GetLocationDictionary();
|
|
}
|
|
}
|