Files
Yi.Admin/Yi.Framework.Net5/Yi.Framework.Interface/IMouldService.cs

23 lines
494 B
C#
Raw Normal View History

2021-10-12 13:56:03 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Yi.Framework.Model.Models;
namespace Yi.Framework.Interface
{
2021-10-17 17:35:18 +08:00
public partial interface IMouldService : IBaseService<mould>
2021-10-12 13:56:03 +08:00
{
2021-10-29 23:23:32 +08:00
2021-10-12 14:23:17 +08:00
/// <summary>
/// 得到该接口属于哪个菜单的
/// </summary>
/// <param name="_mould"></param>
/// <returns></returns>
Task<menu> GetMenuByMould(mould _mould);
2021-10-12 18:05:01 +08:00
2021-10-12 13:56:03 +08:00
}
}