Files
tnb.server/EquipMgr/Tnb.EquipMgr.Interfaces/IToolMoldLocationService.cs
2023-05-21 21:03:45 +08:00

17 lines
352 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tnb.EquipMgr.Interfaces
{
/// <summary>
/// 模具库位服务接口
/// </summary>
public interface IToolMoldLocationService
{
Task<Dictionary<string, object>> GetLocationDictionary();
}
}