测试
This commit is contained in:
@@ -7,7 +7,7 @@ using ZR.Model.System;
|
||||
|
||||
namespace ZR.Service.System.IService
|
||||
{
|
||||
public interface IArticleCategoryService : IBaseService<ArticleCategory>
|
||||
public interface IArticleCategoryService //: IBaseService<ArticleCategory>
|
||||
{
|
||||
List<ArticleCategory> BuildCategoryTree(List<ArticleCategory> categories);
|
||||
}
|
||||
|
||||
@@ -8,7 +8,7 @@ using ZR.Model.System;
|
||||
|
||||
namespace ZR.Service.System.IService
|
||||
{
|
||||
public interface IArticleService : IBaseService<Article>
|
||||
public interface IArticleService //: IBaseService<Article>
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
@@ -6,7 +6,7 @@ using ZR.Model.Vo.System;
|
||||
|
||||
namespace ZR.Service.System.IService
|
||||
{
|
||||
public interface ISysDeptService : IBaseService<SysDept>
|
||||
public interface ISysDeptService //: IBaseService<SysDept>
|
||||
{
|
||||
public List<SysDept> GetSysDepts(SysDept dept);
|
||||
public string CheckDeptNameUnique(SysDept dept);
|
||||
|
||||
@@ -5,7 +5,7 @@ using ZR.Model.System;
|
||||
|
||||
namespace ZR.Service.System.IService
|
||||
{
|
||||
public interface ISysDictDataService : IBaseService<SysDictData>
|
||||
public interface ISysDictDataService
|
||||
{
|
||||
public List<SysDictData> SelectDictDataList(SysDictData dictData);
|
||||
public List<SysDictData> SelectDictDataByType(string dictType);
|
||||
|
||||
@@ -8,7 +8,7 @@ namespace ZR.Service.System.IService
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public interface ISysDictService: IBaseService<SysDictType>
|
||||
public interface ISysDictService : IBaseService<SysDictType>
|
||||
{
|
||||
public List<SysDictType> SelectDictTypeList(SysDictType dictType, Model.PagerInfo pager);
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@ using ZR.Model.System;
|
||||
|
||||
namespace ZR.Service.System.IService
|
||||
{
|
||||
public interface ISysFileService : IBaseService<SysFile>
|
||||
public interface ISysFileService
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
@@ -6,7 +6,7 @@ using ZR.Model.Vo.System;
|
||||
|
||||
namespace ZR.Service.System.IService
|
||||
{
|
||||
public interface ISysMenuService: IBaseService<SysMenu>
|
||||
public interface ISysMenuService
|
||||
{
|
||||
public List<SysMenu> SelectMenuList(long userId);
|
||||
|
||||
|
||||
@@ -6,7 +6,7 @@ using ZR.Service.System;
|
||||
|
||||
namespace ZR.Service.System.IService
|
||||
{
|
||||
public interface ISysOperLogService : IBaseService<SysOperLog>
|
||||
public interface ISysOperLogService
|
||||
{
|
||||
public void InsertOperlog(SysOperLog operLog);
|
||||
|
||||
|
||||
@@ -2,10 +2,11 @@
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
using ZR.Model.System;
|
||||
using ZR.Repository;
|
||||
|
||||
namespace ZR.Service.System.IService
|
||||
{
|
||||
public interface ISysPostService: IBaseService<SysPost>
|
||||
public interface ISysPostService: IBaseRepository<SysPost>
|
||||
{
|
||||
string CheckPostNameUnique(SysPost sysPost);
|
||||
string CheckPostCodeUnique(SysPost sysPost);
|
||||
|
||||
@@ -6,7 +6,7 @@ using ZR.Model.System;
|
||||
|
||||
namespace ZR.Service.System.IService
|
||||
{
|
||||
public interface ISysRoleService: IBaseService<SysRole>
|
||||
public interface ISysRoleService
|
||||
{
|
||||
/// <summary>
|
||||
/// 根据条件分页查询角色数据
|
||||
|
||||
@@ -1,8 +1,9 @@
|
||||
using ZR.Model.System;
|
||||
using ZR.Repository;
|
||||
|
||||
namespace ZR.Service.System.IService
|
||||
{
|
||||
public interface ISysTasksLogService : IBaseService<SysTasksLog>
|
||||
public interface ISysTasksLogService: IBaseRepository<SysTasksLog>
|
||||
{
|
||||
/// <summary>
|
||||
/// 记录任务执行日志
|
||||
|
||||
@@ -7,7 +7,8 @@ using ZR.Model.System;
|
||||
|
||||
namespace ZR.Service.System.IService
|
||||
{
|
||||
public interface ISysTasksQzService: IBaseService<SysTasksQz>
|
||||
public interface ISysTasksQzService
|
||||
{
|
||||
SysTasksQz GetId(object id);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -3,12 +3,13 @@ using ZR.Model.System;
|
||||
|
||||
namespace ZR.Service.System.IService
|
||||
{
|
||||
public interface ISysUserPostService: IBaseService<SysUserPost>
|
||||
public interface ISysUserPostService
|
||||
{
|
||||
public void InsertUserPost(SysUser user);
|
||||
|
||||
public List<long> GetUserPostsByUserId(long userId);
|
||||
|
||||
public string GetPostsStrByUserId(long userId);
|
||||
int Delete(long userId);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -8,7 +8,7 @@ using ZR.Model.System;
|
||||
|
||||
namespace ZR.Service.System.IService
|
||||
{
|
||||
public interface ISysUserService : IBaseService<SysUser>
|
||||
public interface ISysUserService
|
||||
{
|
||||
public List<SysUser> SelectUserList(SysUser user, PagerInfo pager);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user