You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
544 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using djy.Paas.Model;
using Ys.Core.Common;
namespace djy.Paas.IService
{/// <summary>
/// 模型菜单
/// </summary>
public interface IMenuListService : IsBase<tb_sys_MenuList, tb_sys_MenuList>
{
/// <summary>
///根据key获取
/// </summary>
/// <param name="Key"></param>
/// <returns></returns>
public ReturnResult<tb_sys_MenuList> GetKey(string Key);
}
}