zuoxiang 4 年 前
コミット
d6c57816c4

+ 56 - 0
gx_api/GxPress/Api/GxPress.Api/AdminControllers/AdminNavigationController.cs

@@ -0,0 +1,56 @@
+using System.Collections.Generic;
+using System.Threading.Tasks;
+using GxPress.Repository.Interface.Navigation;
+using Microsoft.AspNetCore.Authorization;
+using Microsoft.AspNetCore.Mvc;
+
+namespace GxPress.Api.AdminControllers
+{
+    /// <summary>
+    /// 导航
+    /// </summary>
+    [Route("api/admin/navigation")]
+    [ApiController]
+    [Authorize]
+    public class AdminNavigationController : ControllerBase
+    {
+        private readonly INavigationRepository navigationRepository;
+
+        public AdminNavigationController(INavigationRepository navigationRepository)
+        {
+            this.navigationRepository = navigationRepository;
+
+        }
+
+
+        /// <summary>
+        /// 列表
+        /// </summary>
+        /// <returns></returns>
+        [HttpGet]
+        public async Task<IEnumerable<Entity.Navigations.Navigation>> GetList()
+        {
+            return await navigationRepository.GetAllAsync();
+        }
+        /// <summary>
+        /// 添加导航
+        /// </summary>
+        /// /// <param name="note"></param>
+        /// <returns></returns>
+        [HttpPost]
+        public async Task<int> Insert(Entity.Navigations.Navigation note)
+        {
+            return await navigationRepository.InsertAsync(note);
+        }
+        /// <summary>
+        /// 修改导航
+        /// </summary>
+        /// <param name="note"></param>
+        /// <returns></returns>
+        [HttpPut]
+        public async Task<bool> Update(Entity.Navigations.Navigation note)
+        {
+            return await navigationRepository.UpdateAsync(note);
+        }
+    }
+}

+ 39 - 0
gx_api/GxPress/Api/GxPress.Api/AdminControllers/AdminSystemLabelController.cs

@@ -0,0 +1,39 @@
+using System.Collections.Generic;
+using System.Threading.Tasks;
+using GxPress.Repository.Interface.SystemLabel;
+using Microsoft.AspNetCore.Authorization;
+using Microsoft.AspNetCore.Mvc;
+
+namespace GxPress.Api.AdminControllers
+{
+    /// <summary>
+    /// 系统标签管理
+    /// </summary>
+    [Route("api/admin/system-label")]
+    [ApiController]
+    [Authorize]
+    public class AdminSystemLabelController : ControllerBase
+    {
+        private readonly ISystemLabelRepository _repository;
+
+        public AdminSystemLabelController(ISystemLabelRepository repository)
+        {
+            _repository = repository;
+        }
+        [HttpPost]
+        public async Task<int> Insert(Entity.SystemLabel.SystemLabel note)
+        {
+            return await _repository.InsertAsync(note);
+        }
+        [HttpPut]
+        public async Task<bool> UpdateAsync(Entity.SystemLabel.SystemLabel note)
+        {
+            return await _repository.UpdateAsync(note);
+        }
+        [HttpGet]
+        public async Task<IEnumerable<Entity.SystemLabel.SystemLabel>> GetAllAsync()
+        {
+            return await _repository.GetAllAsync();
+        }
+    }
+}

ファイルの差分が大きいため隠しています
+ 19 - 3
gx_api/GxPress/Api/GxPress.Api/AdminControllers/AdminUtilsController.cs


+ 30 - 0
gx_api/GxPress/Model/GxPress.Entity/Menus/Menus.cs

@@ -0,0 +1,30 @@
+using Datory.Annotations;
+
+namespace GxPress.Entity.Menus
+{
+    /// <summary>
+    /// 系统管理角色权限
+    /// </summary>
+    [DataTable("tede_menus")]
+    public class Menus : Datory.Entity
+    {
+        /// <summary>
+        /// Controller 名称
+        /// </summary>
+        /// <value></value>
+        [DataColumn]
+        public string Controller { get; set; }
+        /// <summary>
+        /// action名称
+        /// </summary>
+        /// <value></value>
+        [DataColumn]
+        public string Action { get; set; }
+        /// <summary>
+        /// 父级ID
+        /// </summary>
+        /// <value></value>
+        [DataColumn]
+        public int parentId { get; set; }
+    }
+}

+ 38 - 0
gx_api/GxPress/Model/GxPress.Entity/Navigations/Navigation.cs

@@ -0,0 +1,38 @@
+using Datory.Annotations;
+
+namespace GxPress.Entity.Navigations
+{
+    /// <summary>
+    /// 系统管理
+    /// </summary>
+    [DataTable("tede_navigation")]
+
+    public class Navigation : Datory.Entity
+    {
+        /// <summary>
+        /// 导航名称
+        /// </summary>
+        /// <value></value>
+        [DataColumn]
+        public string Name { get; set; }
+        /// <summary>
+        /// 是否禁用
+        /// </summary>
+        /// <value></value>
+        [DataColumn]
+        public bool IsDisable { get; set; }
+        /// <summary>
+        /// 父级ID
+        /// </summary>
+        /// <value></value>
+         [DataColumn]
+        public int ParentId { get; set; }
+
+        /// <summary>
+        /// 排序
+        /// </summary>
+        /// <value></value>
+         [DataColumn]
+        public int Sort { get; set; }
+    }
+}

+ 71 - 0
gx_api/GxPress/Model/GxPress.Entity/SystemLabel/SystemLabel.cs

@@ -0,0 +1,71 @@
+using Datory.Annotations;
+
+namespace GxPress.Entity.SystemLabel
+{
+    /// <summary>
+    /// 系统标签
+    /// </summary>
+    [DataTable("tede_system_lable")]
+    public class SystemLabel : Datory.Entity
+    {
+        /// <summary>
+        /// 标签名称
+        /// </summary>
+        /// <value></value>
+        [DataColumn]
+        public string LabelName { get; set; }
+
+        /// <summary>
+        /// 是否禁用
+        /// </summary>
+        /// <value></value>
+        [DataColumn]
+        public bool IsDisable { get; set; }
+
+        /// <summary>
+        /// 排序
+        /// </summary>
+        /// <value></value>
+        [DataColumn]
+        public int Sort { get; set; }
+
+        /// <summary>
+        /// 是否跳转
+        /// </summary>
+        /// <value></value>
+        [DataColumn]
+        public bool IsSkip { get; set; }
+
+        /// <summary>
+        /// 是否分页
+        /// </summary>
+        /// <value></value>
+        [DataColumn]
+        public bool IsPage { get; set; }
+        /// <summary>
+        /// 路径
+        /// </summary>
+        /// <value></value>
+        [DataColumn]
+        public string ControllerUrl { get; set; }
+        /// <summary>
+        /// 路径
+        /// </summary>
+        /// <value></value>
+        [DataColumn]
+        public string ActionUrl { get; set; }
+        /// <summary>
+        /// 资源类型
+        /// </summary>
+        /// <value></value>
+        [DataColumn]
+        public int ResourceType { get; set; }
+
+        /// <summary>
+        /// 样式类型
+        /// </summary>
+        /// <value></value>
+        [DataColumn]
+        public string StyleType { get; set; }
+    }
+}

+ 25 - 0
gx_api/GxPress/Model/GxPress.Entity/SystemRole/SystemRole.cs

@@ -0,0 +1,25 @@
+using Datory.Annotations;
+
+namespace GxPress.Entity.SystemRole
+{
+    /// <summary>
+    /// 系统管理角色权限
+    /// </summary>
+    [DataTable("tede_system_role")]
+
+    public class SystemRole : Datory.Entity
+    {
+        /// <summary>
+        /// 管理人员ID
+        /// </summary>
+        /// <value></value>
+        [DataColumn]
+        public int AdminId { get; set; }
+        /// <summary>
+        /// 菜单
+        /// </summary>
+        /// <value></value>
+        [DataColumn]
+        public int MenusId { get; set; }
+    }
+}

+ 14 - 1
gx_api/GxPress/Model/GxPress.EnumConst/VipTypeConst.cs

@@ -32,5 +32,18 @@ namespace GxPress.EnumConst
         WeChat = 1,
         AliyPay = 2
     }
-
+    /// <summary>
+    /// 资源类型
+    /// </summary>
+    public enum ResourceTypeConst
+    {
+        //电子书
+        Book = 1,
+        //课程
+        Curriculum = 2,
+        //音频
+        Audio = 3,
+        //期刊
+        Journal = 4
+    }
 }

+ 28 - 0
gx_api/GxPress/Repository/GxPress.Repository.Implement/Menus/MenusRepository.cs

@@ -0,0 +1,28 @@
+using System.Collections.Generic;
+using AutoMapper;
+using Datory;
+using GxPress.Common.AppOptions;
+using GxPress.Common.Tools;
+using GxPress.Repository.Interface.Menus;
+using Microsoft.Extensions.Options;
+
+namespace GxPress.Repository.Implement.Menus
+{
+    public class MenusRepository : IMenusRepository
+    {
+        private readonly Repository<Entity.Menus.Menus> _repository;
+        private readonly IMapper _mapper;
+
+        public MenusRepository(IOptionsMonitor<DatabaseOptions> dbOptionsAccessor, IMapper mapper)
+        {
+            var databaseType = StringUtils.ToEnum<DatabaseType>(dbOptionsAccessor.CurrentValue.DatabaseType, DatabaseType.MySql);
+            var database = new Database(databaseType, dbOptionsAccessor.CurrentValue.ConnectionString);
+            _repository = new Repository<Entity.Menus.Menus>(database);
+            _mapper = mapper;
+        }
+
+        public IDatabase Database => _repository.Database;
+        public string TableName => _repository.TableName;
+        public List<TableColumn> TableColumns => _repository.TableColumns;
+    }
+}

+ 62 - 0
gx_api/GxPress/Repository/GxPress.Repository.Implement/Navigation/NavigationRepository.cs

@@ -0,0 +1,62 @@
+using System.Collections.Generic;
+using System.Threading.Tasks;
+using AutoMapper;
+using Datory;
+using GxPress.Common.AppOptions;
+using GxPress.Common.Tools;
+using GxPress.Repository.Interface.Navigation;
+using Microsoft.Extensions.Options;
+
+namespace GxPress.Repository.Implement.Navigation
+{
+    public class NavigationRepository : INavigationRepository
+    {
+        private readonly Repository<Entity.Navigations.Navigation> _repository;
+        private readonly IMapper _mapper;
+        private readonly string _connectionString;
+        private readonly string _databaseTypestr;
+        public NavigationRepository(IOptionsMonitor<DatabaseOptions> dbOptionsAccessor, IMapper mapper)
+        {
+            _databaseTypestr = dbOptionsAccessor.CurrentValue.DatabaseType;
+            _connectionString = dbOptionsAccessor.CurrentValue.ConnectionString;
+            var databaseType =
+                StringUtils.ToEnum<DatabaseType>(dbOptionsAccessor.CurrentValue.DatabaseType, DatabaseType.MySql);
+            var database = new Database(databaseType, dbOptionsAccessor.CurrentValue.ConnectionString);
+            _repository = new Repository<Entity.Navigations.Navigation>(database);
+            _mapper = mapper;
+        }
+
+        public IDatabase Database => _repository.Database;
+        public string TableName => _repository.TableName;
+        public List<TableColumn> TableColumns => _repository.TableColumns;
+
+        public async Task<Entity.Navigations.Navigation> GetAsync(int id)
+        {
+            return await _repository.GetAsync(id);
+        }
+
+        public async Task<bool> DeleteAsync(int id)
+        {
+            return await _repository.DeleteAsync(id);
+        }
+
+        public async Task<int> InsertAsync(Entity.Navigations.Navigation note)
+        {
+            return await _repository.InsertAsync(note);
+        }
+
+        public async Task<bool> UpdateAsync(Entity.Navigations.Navigation note)
+        {
+            return await _repository.UpdateAsync(note);
+        }
+        public async Task<bool> UpdateAsync(SqlKata.Query query)
+        {
+            return await _repository.UpdateAsync(query) > 0;
+        }
+
+        public async Task<IEnumerable<Entity.Navigations.Navigation>> GetAllAsync()
+        {
+            return await _repository.GetAllAsync(Q.Where(nameof(Entity.Navigations.Navigation.IsDisable), false).OrderByDesc(nameof(Entity.Navigations.Navigation.Sort)));
+        }
+    }
+}

+ 62 - 0
gx_api/GxPress/Repository/GxPress.Repository.Implement/SystemLabel/SystemLabelRepository.cs

@@ -0,0 +1,62 @@
+using System.Collections.Generic;
+using System.Threading.Tasks;
+using AutoMapper;
+using Datory;
+using GxPress.Common.AppOptions;
+using GxPress.Common.Tools;
+using GxPress.Repository.Interface.SystemLabel;
+using Microsoft.Extensions.Options;
+
+namespace GxPress.Repository.Implement.SystemLabel
+{
+    public class SystemLabelRepository : ISystemLabelRepository
+    {
+        private readonly Repository<Entity.SystemLabel.SystemLabel> _repository;
+        private readonly IMapper _mapper;
+        private readonly string _connectionString;
+        private readonly string _databaseTypestr;
+        public SystemLabelRepository(IOptionsMonitor<DatabaseOptions> dbOptionsAccessor, IMapper mapper)
+        {
+            _databaseTypestr = dbOptionsAccessor.CurrentValue.DatabaseType;
+            _connectionString = dbOptionsAccessor.CurrentValue.ConnectionString;
+            var databaseType =
+                StringUtils.ToEnum<DatabaseType>(dbOptionsAccessor.CurrentValue.DatabaseType, DatabaseType.MySql);
+            var database = new Database(databaseType, dbOptionsAccessor.CurrentValue.ConnectionString);
+            _repository = new Repository<Entity.SystemLabel.SystemLabel>(database);
+            _mapper = mapper;
+        }
+
+        public IDatabase Database => _repository.Database;
+        public string TableName => _repository.TableName;
+        public List<TableColumn> TableColumns => _repository.TableColumns;
+
+        public async Task<Entity.SystemLabel.SystemLabel> GetAsync(int id)
+        {
+            return await _repository.GetAsync(id);
+        }
+
+        public async Task<bool> DeleteAsync(int id)
+        {
+            return await _repository.DeleteAsync(id);
+        }
+
+        public async Task<int> InsertAsync(Entity.SystemLabel.SystemLabel note)
+        {
+            return await _repository.InsertAsync(note);
+        }
+
+        public async Task<bool> UpdateAsync(Entity.SystemLabel.SystemLabel note)
+        {
+            return await _repository.UpdateAsync(note);
+        }
+        public async Task<bool> UpdateAsync(SqlKata.Query query)
+        {
+            return await _repository.UpdateAsync(query) > 0;
+        }
+
+        public async Task<IEnumerable<Entity.SystemLabel.SystemLabel>> GetAllAsync()
+        {
+            return await _repository.GetAllAsync(Q.Where(nameof(Entity.Navigations.Navigation.IsDisable), false).OrderByDesc(nameof(Entity.Navigations.Navigation.Sort)));
+        }
+    }
+}

+ 28 - 0
gx_api/GxPress/Repository/GxPress.Repository.Implement/SystemRole/SystemRoleRepository.cs

@@ -0,0 +1,28 @@
+using System.Collections.Generic;
+using AutoMapper;
+using Datory;
+using GxPress.Common.AppOptions;
+using GxPress.Common.Tools;
+using GxPress.Repository.Interface.SystemRole;
+using Microsoft.Extensions.Options;
+
+namespace GxPress.Repository.Implement.SystemRole
+{
+    public class SystemRoleRepository: ISystemRoleRepository
+    {
+         private readonly Repository<Entity.SystemRole.SystemRole> _repository;
+        private readonly IMapper _mapper;
+
+        public SystemRoleRepository(IOptionsMonitor<DatabaseOptions> dbOptionsAccessor, IMapper mapper)
+        {
+            var databaseType = StringUtils.ToEnum<DatabaseType>(dbOptionsAccessor.CurrentValue.DatabaseType, DatabaseType.MySql);
+            var database = new Database(databaseType, dbOptionsAccessor.CurrentValue.ConnectionString);
+            _repository = new Repository<Entity.SystemRole.SystemRole>(database);
+            _mapper = mapper;
+        }
+
+        public IDatabase Database => _repository.Database;
+        public string TableName => _repository.TableName;
+        public List<TableColumn> TableColumns => _repository.TableColumns;
+    }
+}

+ 9 - 0
gx_api/GxPress/Repository/GxPress.Repository.Interface/Menus/IMenusRepository.cs

@@ -0,0 +1,9 @@
+using Datory;
+
+namespace GxPress.Repository.Interface.Menus
+{
+    public interface IMenusRepository: IRepository
+    {
+         
+    }
+}

+ 20 - 0
gx_api/GxPress/Repository/GxPress.Repository.Interface/Navigation/INavigationRepository.cs

@@ -0,0 +1,20 @@
+using System.Collections.Generic;
+using System.Threading.Tasks;
+using Datory;
+
+namespace GxPress.Repository.Interface.Navigation
+{
+    public interface INavigationRepository : IRepository
+    {
+        Task<Entity.Navigations.Navigation> GetAsync(int id);
+
+        Task<bool> DeleteAsync(int id);
+
+        Task<int> InsertAsync(Entity.Navigations.Navigation note);
+
+        Task<bool> UpdateAsync(Entity.Navigations.Navigation note);
+        Task<bool> UpdateAsync(SqlKata.Query query);
+
+        Task<IEnumerable<Entity.Navigations.Navigation>> GetAllAsync();
+    }
+}

+ 18 - 0
gx_api/GxPress/Repository/GxPress.Repository.Interface/SystemLabel/ISystemLabelRepository.cs

@@ -0,0 +1,18 @@
+using System.Collections.Generic;
+using System.Threading.Tasks;
+using Datory;
+
+namespace GxPress.Repository.Interface.SystemLabel
+{
+    public interface ISystemLabelRepository : IRepository
+    {
+        Task<Entity.SystemLabel.SystemLabel> GetAsync(int id);
+
+        Task<bool> DeleteAsync(int id);
+
+        Task<int> InsertAsync(Entity.SystemLabel.SystemLabel note);
+
+        Task<bool> UpdateAsync(Entity.SystemLabel.SystemLabel note);
+        Task<IEnumerable<Entity.SystemLabel.SystemLabel>> GetAllAsync();
+    }
+}

+ 9 - 0
gx_api/GxPress/Repository/GxPress.Repository.Interface/SystemRole/ISystemRoleRepository.cs

@@ -0,0 +1,9 @@
+using Datory;
+
+namespace GxPress.Repository.Interface.SystemRole
+{
+    public interface ISystemRoleRepository: IRepository
+    {
+         
+    }
+}