上传T4模板

This commit is contained in:
yeslode
2021-10-17 17:35:18 +08:00
parent cdd9e8f45b
commit da6248e6b3
22 changed files with 302 additions and 21 deletions

View File

@@ -7,7 +7,7 @@ using Yi.Framework.Model.Models;
namespace Yi.Framework.Interface
{
public interface IUserService:IBaseService<user>
public partial interface IUserService:IBaseService<user>
{
Task<bool> DelListByUpdateAsync(List<int> _ids);
Task<IEnumerable<user>> GetAllEntitiesTrueAsync();
@@ -58,6 +58,13 @@ namespace Yi.Framework.Interface
/// <param name="emailAddress"></param>
/// <returns></returns>
Task<bool> EmailIsExsit(string emailAddress);
/// <summary>
/// 获取用户的目录菜单,没有绑定接口
/// </summary>
/// <param name="_user"></param>
/// <returns></returns>
Task<List<List<menu>>> GetMenuByUser(user _user);
}
}