一期项目框架搭建

This commit is contained in:
“hsc”
2026-08-27 17:10:56 +08:00
parent 9b852e5c95
commit 03d46fb473
97 changed files with 1222 additions and 14 deletions
@@ -0,0 +1,12 @@
using Service.Interface;
namespace Service.Implement
{
/// <summary>
/// 访问日志 服务实现
/// </summary>
public class AccessLogService : IAccessLogService
{
// TODO: 实现 访问日志 相关方法
}
}
+12
View File
@@ -0,0 +1,12 @@
using Service.Interface;
namespace Service.Implement
{
/// <summary>
/// 操作审计日志 服务实现
/// </summary>
public class AuditService : IAuditService
{
// TODO: 实现 操作审计日志 相关方法
}
}
+12
View File
@@ -0,0 +1,12 @@
using Service.Interface;
namespace Service.Implement
{
/// <summary>
/// 数据字典管理 服务实现
/// </summary>
public class DictService : IDictService
{
// TODO: 实现 数据字典管理 相关方法
}
}
@@ -0,0 +1,12 @@
using Service.Interface;
namespace Service.Implement
{
/// <summary>
/// 文件存储管理 服务实现
/// </summary>
public class FileStorageService : IFileStorageService
{
// TODO: 实现 文件存储管理 相关方法
}
}
@@ -0,0 +1,12 @@
using Service.Interface;
namespace Service.Implement
{
/// <summary>
/// 组织架构管理 服务实现
/// </summary>
public class OrganizationService : IOrganizationService
{
// TODO: 实现 组织架构管理 相关方法
}
}
+12
View File
@@ -0,0 +1,12 @@
using Service.Interface;
namespace Service.Implement
{
/// <summary>
/// 角色权限管理 服务实现
/// </summary>
public class RoleService : IRoleService
{
// TODO: 实现 角色权限管理 相关方法
}
}
@@ -0,0 +1,12 @@
using Service.Interface;
namespace Service.Implement
{
/// <summary>
/// 系统日志 服务实现
/// </summary>
public class SystemLogService : ISystemLogService
{
// TODO: 实现 系统日志 相关方法
}
}
@@ -0,0 +1,12 @@
using Service.Interface;
namespace Service.Implement
{
/// <summary>
/// 系统参数配置 服务实现
/// </summary>
public class SystemParamService : ISystemParamService
{
// TODO: 实现 系统参数配置 相关方法
}
}
+12
View File
@@ -0,0 +1,12 @@
using Service.Interface;
namespace Service.Implement
{
/// <summary>
/// 用户管理 服务实现
/// </summary>
public class UserService : IUserService
{
// TODO: 实现 用户管理 相关方法
}
}