Files
tnb.server/EquipMgr/Tnb.EquipMgr.Interfaces/IToolMoldHouseService.cs
2023-11-06 19:35:59 +08:00

11 lines
229 B
C#

namespace Tnb.EquipMgr.Interfaces
{
/// <summary>
/// 目录库房服务接口
/// </summary>
public interface IToolMoldHouseService
{
Task<Dictionary<string, object>> GetHouseDictionary();
}
}