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

24 lines
595 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
{
public interface IMouldService : IBaseService<mould>
{
Task<bool> DelListByUpdateAsync(List<int> _ids);
Task<IEnumerable<mould>> GetAllEntitiesTrueAsync();
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
}
}