mirror of
http://git.coreshop.cn/jianweie/coreshoppro.git
synced 2025-12-06 18:03:27 +08:00
添加项目文件。
This commit is contained in:
21
CoreCms.Net.IServices/System/ISysDictionaryDataServices.cs
Normal file
21
CoreCms.Net.IServices/System/ISysDictionaryDataServices.cs
Normal file
@@ -0,0 +1,21 @@
|
||||
/***********************************************************************
|
||||
* Project: CoreCms
|
||||
* ProjectName: 核心内容管理系统
|
||||
* Web: https://www.corecms.net
|
||||
* Author: 大灰灰
|
||||
* Email: jianweie@163.com
|
||||
* CreateTime: 2021/1/31 21:45:10
|
||||
* Description: 暂无
|
||||
***********************************************************************/
|
||||
|
||||
using CoreCms.Net.Model.Entities;
|
||||
|
||||
namespace CoreCms.Net.IServices
|
||||
{
|
||||
/// <summary>
|
||||
/// 数据字典项表 服务工厂接口
|
||||
/// </summary>
|
||||
public interface ISysDictionaryDataServices : IBaseServices<SysDictionaryData>
|
||||
{
|
||||
}
|
||||
}
|
||||
21
CoreCms.Net.IServices/System/ISysDictionaryServices.cs
Normal file
21
CoreCms.Net.IServices/System/ISysDictionaryServices.cs
Normal file
@@ -0,0 +1,21 @@
|
||||
/***********************************************************************
|
||||
* Project: CoreCms
|
||||
* ProjectName: 核心内容管理系统
|
||||
* Web: https://www.corecms.net
|
||||
* Author: 大灰灰
|
||||
* Email: jianweie@163.com
|
||||
* CreateTime: 2021/1/31 21:45:10
|
||||
* Description: 暂无
|
||||
***********************************************************************/
|
||||
|
||||
using CoreCms.Net.Model.Entities;
|
||||
|
||||
namespace CoreCms.Net.IServices
|
||||
{
|
||||
/// <summary>
|
||||
/// 数据字典表 服务工厂接口
|
||||
/// </summary>
|
||||
public interface ISysDictionaryServices : IBaseServices<SysDictionary>
|
||||
{
|
||||
}
|
||||
}
|
||||
21
CoreCms.Net.IServices/System/ISysLoginRecordServices.cs
Normal file
21
CoreCms.Net.IServices/System/ISysLoginRecordServices.cs
Normal file
@@ -0,0 +1,21 @@
|
||||
/***********************************************************************
|
||||
* Project: CoreCms
|
||||
* ProjectName: 核心内容管理系统
|
||||
* Web: https://www.corecms.net
|
||||
* Author: 大灰灰
|
||||
* Email: jianweie@163.com
|
||||
* CreateTime: 2021/1/31 21:45:10
|
||||
* Description: 暂无
|
||||
***********************************************************************/
|
||||
|
||||
using CoreCms.Net.Model.Entities;
|
||||
|
||||
namespace CoreCms.Net.IServices
|
||||
{
|
||||
/// <summary>
|
||||
/// 登录日志表 服务工厂接口
|
||||
/// </summary>
|
||||
public interface ISysLoginRecordServices : IBaseServices<SysLoginRecord>
|
||||
{
|
||||
}
|
||||
}
|
||||
71
CoreCms.Net.IServices/System/ISysMenuServices.cs
Normal file
71
CoreCms.Net.IServices/System/ISysMenuServices.cs
Normal file
@@ -0,0 +1,71 @@
|
||||
/***********************************************************************
|
||||
* Project: CoreCms
|
||||
* ProjectName: 核心内容管理系统
|
||||
* Web: https://www.corecms.net
|
||||
* Author: 大灰灰
|
||||
* Email: jianweie@163.com
|
||||
* CreateTime: 2021/1/31 21:45:10
|
||||
* Description: 暂无
|
||||
***********************************************************************/
|
||||
|
||||
using System.Collections.Generic;
|
||||
using System.Threading.Tasks;
|
||||
using CoreCms.Net.Model.Entities;
|
||||
using CoreCms.Net.Model.ViewModels.UI;
|
||||
|
||||
namespace CoreCms.Net.IServices
|
||||
{
|
||||
/// <summary>
|
||||
/// 菜单表 服务工厂接口
|
||||
/// </summary>
|
||||
public interface ISysMenuServices : IBaseServices<SysMenu>
|
||||
{
|
||||
#region 重写增删改查操作===========================================================
|
||||
|
||||
/// <summary>
|
||||
/// 重写异步插入方法
|
||||
/// </summary>
|
||||
/// <param name="entity"></param>
|
||||
/// <returns></returns>
|
||||
new Task<AdminUiCallBack> InsertAsync(SysMenu entity);
|
||||
|
||||
/// <summary>
|
||||
/// 重写异步更新方法
|
||||
/// </summary>
|
||||
/// <param name="entity"></param>
|
||||
/// <returns></returns>
|
||||
new Task<AdminUiCallBack> UpdateAsync(SysMenu entity);
|
||||
|
||||
/// <summary>
|
||||
/// 重写异步更新方法
|
||||
/// </summary>
|
||||
/// <param name="entity"></param>
|
||||
/// <returns></returns>
|
||||
new Task<AdminUiCallBack> UpdateAsync(List<SysMenu> entity);
|
||||
|
||||
/// <summary>
|
||||
/// 重写删除指定ID的数据
|
||||
/// </summary>
|
||||
/// <param name="id"></param>
|
||||
/// <returns></returns>
|
||||
Task<AdminUiCallBack> DeleteByIdAsync(int id);
|
||||
|
||||
#endregion
|
||||
|
||||
|
||||
#region 获取缓存的所有数据==========================================================
|
||||
|
||||
/// <summary>
|
||||
/// 获取缓存的所有数据
|
||||
/// </summary>
|
||||
/// <returns></returns>
|
||||
Task<List<SysMenu>> GetCaChe();
|
||||
|
||||
/// <summary>
|
||||
/// 更新cache
|
||||
/// </summary>
|
||||
Task<List<SysMenu>> UpdateCaChe();
|
||||
|
||||
#endregion
|
||||
}
|
||||
}
|
||||
21
CoreCms.Net.IServices/System/ISysNLogRecordsServices.cs
Normal file
21
CoreCms.Net.IServices/System/ISysNLogRecordsServices.cs
Normal file
@@ -0,0 +1,21 @@
|
||||
/***********************************************************************
|
||||
* Project: CoreCms
|
||||
* ProjectName: 核心内容管理系统
|
||||
* Web: https://www.corecms.net
|
||||
* Author: 大灰灰
|
||||
* Email: jianweie@163.com
|
||||
* CreateTime: 2021/1/31 21:45:10
|
||||
* Description: 暂无
|
||||
***********************************************************************/
|
||||
|
||||
using CoreCms.Net.Model.Entities;
|
||||
|
||||
namespace CoreCms.Net.IServices
|
||||
{
|
||||
/// <summary>
|
||||
/// Nlog记录表 服务工厂接口
|
||||
/// </summary>
|
||||
public interface ISysNLogRecordsServices : IBaseServices<SysNLogRecords>
|
||||
{
|
||||
}
|
||||
}
|
||||
22
CoreCms.Net.IServices/System/ISysOperRecordServices.cs
Normal file
22
CoreCms.Net.IServices/System/ISysOperRecordServices.cs
Normal file
@@ -0,0 +1,22 @@
|
||||
/***********************************************************************
|
||||
* Project: CoreCms
|
||||
* ProjectName: 核心内容管理系统
|
||||
* Web: https://www.corecms.net
|
||||
* Author: 大灰灰
|
||||
* Email: jianweie@163.com
|
||||
* CreateTime: 2021/1/31 21:45:10
|
||||
* Description: 暂无
|
||||
***********************************************************************/
|
||||
|
||||
|
||||
using CoreCms.Net.Model.Entities;
|
||||
|
||||
namespace CoreCms.Net.IServices
|
||||
{
|
||||
/// <summary>
|
||||
/// 操作日志表 服务工厂接口
|
||||
/// </summary>
|
||||
public interface ISysOperRecordServices : IBaseServices<SysOperRecord>
|
||||
{
|
||||
}
|
||||
}
|
||||
21
CoreCms.Net.IServices/System/ISysOrganizationServices.cs
Normal file
21
CoreCms.Net.IServices/System/ISysOrganizationServices.cs
Normal file
@@ -0,0 +1,21 @@
|
||||
/***********************************************************************
|
||||
* Project: CoreCms
|
||||
* ProjectName: 核心内容管理系统
|
||||
* Web: https://www.corecms.net
|
||||
* Author: 大灰灰
|
||||
* Email: jianweie@163.com
|
||||
* CreateTime: 2021/1/31 21:45:10
|
||||
* Description: 暂无
|
||||
***********************************************************************/
|
||||
|
||||
using CoreCms.Net.Model.Entities;
|
||||
|
||||
namespace CoreCms.Net.IServices
|
||||
{
|
||||
/// <summary>
|
||||
/// 组织机构表 服务工厂接口
|
||||
/// </summary>
|
||||
public interface ISysOrganizationServices : IBaseServices<SysOrganization>
|
||||
{
|
||||
}
|
||||
}
|
||||
24
CoreCms.Net.IServices/System/ISysRoleMenuServices.cs
Normal file
24
CoreCms.Net.IServices/System/ISysRoleMenuServices.cs
Normal file
@@ -0,0 +1,24 @@
|
||||
/***********************************************************************
|
||||
* Project: CoreCms
|
||||
* ProjectName: 核心内容管理系统
|
||||
* Web: https://www.corecms.net
|
||||
* Author: 大灰灰
|
||||
* Email: jianweie@163.com
|
||||
* CreateTime: 2021/1/31 21:45:10
|
||||
* Description: 暂无
|
||||
***********************************************************************/
|
||||
|
||||
using System.Collections.Generic;
|
||||
using System.Threading.Tasks;
|
||||
using CoreCms.Net.Model.Entities;
|
||||
|
||||
namespace CoreCms.Net.IServices
|
||||
{
|
||||
/// <summary>
|
||||
/// 角色菜单关联表 服务工厂接口
|
||||
/// </summary>
|
||||
public interface ISysRoleMenuServices : IBaseServices<SysRoleMenu>
|
||||
{
|
||||
Task<List<SysRoleMenu>> RoleModuleMaps();
|
||||
}
|
||||
}
|
||||
21
CoreCms.Net.IServices/System/ISysRoleServices.cs
Normal file
21
CoreCms.Net.IServices/System/ISysRoleServices.cs
Normal file
@@ -0,0 +1,21 @@
|
||||
/***********************************************************************
|
||||
* Project: CoreCms
|
||||
* ProjectName: 核心内容管理系统
|
||||
* Web: https://www.corecms.net
|
||||
* Author: 大灰灰
|
||||
* Email: jianweie@163.com
|
||||
* CreateTime: 2021/1/31 21:45:10
|
||||
* Description: 暂无
|
||||
***********************************************************************/
|
||||
|
||||
using CoreCms.Net.Model.Entities;
|
||||
|
||||
namespace CoreCms.Net.IServices
|
||||
{
|
||||
/// <summary>
|
||||
/// 角色表 服务工厂接口
|
||||
/// </summary>
|
||||
public interface ISysRoleServices : IBaseServices<SysRole>
|
||||
{
|
||||
}
|
||||
}
|
||||
21
CoreCms.Net.IServices/System/ISysTaskLogServices.cs
Normal file
21
CoreCms.Net.IServices/System/ISysTaskLogServices.cs
Normal file
@@ -0,0 +1,21 @@
|
||||
/***********************************************************************
|
||||
* Project: CoreCms
|
||||
* ProjectName: 核心内容管理系统
|
||||
* Web: https://www.corecms.net
|
||||
* Author: 大灰灰
|
||||
* Email: jianweie@163.com
|
||||
* CreateTime: 2021/1/31 21:45:10
|
||||
* Description: 暂无
|
||||
***********************************************************************/
|
||||
|
||||
using CoreCms.Net.Model.Entities;
|
||||
|
||||
namespace CoreCms.Net.IServices
|
||||
{
|
||||
/// <summary>
|
||||
/// 定时任务日志 服务工厂接口
|
||||
/// </summary>
|
||||
public interface ISysTaskLogServices : IBaseServices<SysTaskLog>
|
||||
{
|
||||
}
|
||||
}
|
||||
21
CoreCms.Net.IServices/System/ISysUserRoleServices.cs
Normal file
21
CoreCms.Net.IServices/System/ISysUserRoleServices.cs
Normal file
@@ -0,0 +1,21 @@
|
||||
/***********************************************************************
|
||||
* Project: CoreCms
|
||||
* ProjectName: 核心内容管理系统
|
||||
* Web: https://www.corecms.net
|
||||
* Author: 大灰灰
|
||||
* Email: jianweie@163.com
|
||||
* CreateTime: 2021/1/31 21:45:10
|
||||
* Description: 暂无
|
||||
***********************************************************************/
|
||||
|
||||
using CoreCms.Net.Model.Entities;
|
||||
|
||||
namespace CoreCms.Net.IServices
|
||||
{
|
||||
/// <summary>
|
||||
/// 用户角色关联表 服务工厂接口
|
||||
/// </summary>
|
||||
public interface ISysUserRoleServices : IBaseServices<SysUserRole>
|
||||
{
|
||||
}
|
||||
}
|
||||
23
CoreCms.Net.IServices/System/ISysUserServices.cs
Normal file
23
CoreCms.Net.IServices/System/ISysUserServices.cs
Normal file
@@ -0,0 +1,23 @@
|
||||
/***********************************************************************
|
||||
* Project: CoreCms
|
||||
* ProjectName: 核心内容管理系统
|
||||
* Web: https://www.corecms.net
|
||||
* Author: 大灰灰
|
||||
* Email: jianweie@163.com
|
||||
* CreateTime: 2021/1/31 21:45:10
|
||||
* Description: 暂无
|
||||
***********************************************************************/
|
||||
|
||||
using System.Threading.Tasks;
|
||||
using CoreCms.Net.Model.Entities;
|
||||
|
||||
namespace CoreCms.Net.IServices
|
||||
{
|
||||
/// <summary>
|
||||
/// 用户表 服务工厂接口
|
||||
/// </summary>
|
||||
public interface ISysUserServices : IBaseServices<SysUser>
|
||||
{
|
||||
Task<string> GetUserRoleNameStr(string loginName, string loginPwd);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user