李昊 4 年之前
父节点
当前提交
5bf6571f3a
共有 23 个文件被更改,包括 912 次插入8 次删除
  1. 二进制
      gx_api/GxPress/Api/.DS_Store
  2. 二进制
      gx_api/GxPress/Api/GxPress.Api/.DS_Store
  3. 82 0
      gx_api/GxPress/Api/GxPress.Api/AdminControllers/AdminCategoryController.cs
  4. 46 0
      gx_api/GxPress/Api/GxPress.Api/AdminControllers/AdminMediaController.cs
  5. 13 2
      gx_api/GxPress/Api/GxPress.Api/AdminControllers/AdminUtilsController.cs
  6. 5 0
      gx_api/GxPress/Model/GxPress.Entity/GxPress.Entity.csproj
  7. 39 0
      gx_api/GxPress/Model/GxPress.Entity/tede2/Category/Category.cs
  8. 117 0
      gx_api/GxPress/Model/GxPress.Entity/tede2/Media/Media.cs
  9. 34 0
      gx_api/GxPress/Model/GxPress.Entity/tede2/Media/MediaLibrary.cs
  10. 10 6
      gx_api/GxPress/Model/GxPress.EnumConst/VipTypeConst.cs
  11. 19 0
      gx_api/GxPress/Model/GxPress.Mappings/MediaMapping.cs
  12. 3 0
      gx_api/GxPress/Model/GxPress.Request/GxPress.Request.csproj
  13. 135 0
      gx_api/GxPress/Model/GxPress.Request/Media/MediaRequest.cs
  14. 3 0
      gx_api/GxPress/Model/GxPress.Result/GxPress.Result.csproj
  15. 140 0
      gx_api/GxPress/Model/GxPress.Result/Media/MediaResult.cs
  16. 72 0
      gx_api/GxPress/Repository/GxPress.Repository.Implement/Category/CategoryRepository.cs
  17. 4 0
      gx_api/GxPress/Repository/GxPress.Repository.Implement/GxPress.Repository.Implement.csproj
  18. 10 0
      gx_api/GxPress/Repository/GxPress.Repository.Implement/Media/MediaLibraryRepository.cs
  19. 102 0
      gx_api/GxPress/Repository/GxPress.Repository.Implement/Media/MediaRepository.cs
  20. 35 0
      gx_api/GxPress/Repository/GxPress.Repository.Interface/Category/CategoryRepository.cs
  21. 4 0
      gx_api/GxPress/Repository/GxPress.Repository.Interface/GxPress.Repository.Interface.csproj
  22. 9 0
      gx_api/GxPress/Repository/GxPress.Repository.Interface/Media/IMediaLibraryRepository.cs
  23. 30 0
      gx_api/GxPress/Repository/GxPress.Repository.Interface/Media/IMediaRepository.cs

二进制
gx_api/GxPress/Api/.DS_Store


二进制
gx_api/GxPress/Api/GxPress.Api/.DS_Store


+ 82 - 0
gx_api/GxPress/Api/GxPress.Api/AdminControllers/AdminCategoryController.cs

@@ -0,0 +1,82 @@
+using System.Collections.Generic;
+using System.Threading.Tasks;
+using GxPress.Repository.Interface.Category;
+using Microsoft.AspNetCore.Authorization;
+using Microsoft.AspNetCore.Mvc;
+
+// For more information on enabling Web API for empty projects, visit https://go.microsoft.com/fwlink/?LinkID=397860
+
+namespace GxPress.Api.AdminControllers
+{
+    [ApiController]
+    [Authorize]
+    [Route("api/admin/category")]
+    public class AdminCategoryController : Controller
+    {
+        private readonly ICategoryRepository categoryRepository;
+        public AdminCategoryController(ICategoryRepository categoryRepository)
+        {
+            this.categoryRepository = categoryRepository;
+        }
+        /// <summary>
+        /// 详情
+        /// </summary>
+        /// <param name="id"></param>
+        /// <returns></returns>
+        [HttpGet("{id}")]
+        public async Task<Entity.tede2.Category.Category> GetAsync(int id)
+        {
+            return await categoryRepository.GetAsync(id);
+        }
+        /// <summary>
+        /// 删除
+        /// </summary>
+        /// <param name="id"></param>
+        /// <returns></returns>
+        [HttpDelete("{id}")]
+        public async Task<bool> DeleteAsync(int id)
+        {
+            return await categoryRepository.DeleteAsync(id);
+        }
+        /// <summary>
+        /// 添加
+        /// </summary>
+        /// <param name="note"></param>
+        /// <returns></returns>
+        [HttpPost]
+
+        public async Task<int> InsertAsync(Entity.tede2.Category.Category note)
+        {
+            return await categoryRepository.InsertAsync(note);
+        }
+        /// <summary>
+        /// 修改
+        /// </summary>
+        /// <param name="note"></param>
+        /// <returns></returns>
+        [HttpPut]
+        public async Task<bool> UpdateAsync(Entity.tede2.Category.Category note)
+        {
+            return await categoryRepository.UpdateAsync(note);
+        }
+        /// <summary>
+        /// 获取所有
+        /// </summary>
+        /// <returns></returns>
+        [HttpGet]
+        public async Task<IEnumerable<Entity.tede2.Category.Category>> GetAllAsync()
+        {
+            return await categoryRepository.GetAllAsync();
+        }
+        /// <summary>
+        /// 查询子集
+        /// </summary>
+        /// <param name="parentId"></param>
+        /// <returns></returns>
+        [HttpGet("children/{parentId}")]
+        public async Task<IEnumerable<Entity.tede2.Category.Category>> GetCategoryChildrenAsync(int parentId)
+        {
+            return await categoryRepository.GetCategoryChildrenAsync(parentId);
+        }
+    }
+}

+ 46 - 0
gx_api/GxPress/Api/GxPress.Api/AdminControllers/AdminMediaController.cs

@@ -0,0 +1,46 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Threading.Tasks;
+using Microsoft.AspNetCore.Mvc;
+
+// For more information on enabling Web API for empty projects, visit https://go.microsoft.com/fwlink/?LinkID=397860
+
+namespace GxPress.Api.AdminControllers
+{
+    [Route("api/[controller]")]
+    public class AdminMediaController : Controller
+    {
+        // GET: api/values
+        [HttpGet]
+        public IEnumerable<string> Get()
+        {
+            return new string[] { "value1", "value2" };
+        }
+
+        // GET api/values/5
+        [HttpGet("{id}")]
+        public string Get(int id)
+        {
+            return "value";
+        }
+
+        // POST api/values
+        [HttpPost]
+        public void Post([FromBody]string value)
+        {
+        }
+
+        // PUT api/values/5
+        [HttpPut("{id}")]
+        public void Put(int id, [FromBody]string value)
+        {
+        }
+
+        // DELETE api/values/5
+        [HttpDelete("{id}")]
+        public void Delete(int id)
+        {
+        }
+    }
+}

文件差异内容过多而无法显示
+ 13 - 2
gx_api/GxPress/Api/GxPress.Api/AdminControllers/AdminUtilsController.cs


+ 5 - 0
gx_api/GxPress/Model/GxPress.Entity/GxPress.Entity.csproj

@@ -23,4 +23,9 @@
     <PackageReference Include="Datory" Version="1.0.13" />
   </ItemGroup>
 
+  <ItemGroup>
+    <Folder Include="tede2\" />
+    <Folder Include="tede2\Category\" />
+    <Folder Include="tede2\Media\" />
+  </ItemGroup>
 </Project>

+ 39 - 0
gx_api/GxPress/Model/GxPress.Entity/tede2/Category/Category.cs

@@ -0,0 +1,39 @@
+using System;
+using Datory.Annotations;
+
+namespace GxPress.Entity.tede2.Category
+{
+    /// <summary>
+    /// 类别
+    /// </summary>
+    [DataTable("tede_category")]
+    public class Category : Datory.Entity
+    {
+        /// <summary>
+        /// 名称
+        /// </summary>
+        [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; }
+
+    }
+}

+ 117 - 0
gx_api/GxPress/Model/GxPress.Entity/tede2/Media/Media.cs

@@ -0,0 +1,117 @@
+using System;
+using Datory.Annotations;
+
+namespace GxPress.Entity.tede2.Media
+{
+    /// <summary>
+    /// 媒体类型 文章、书籍、视频、音频、期刊
+    /// </summary>
+    [DataTable("tede_media")]
+    public class Media : Datory.Entity
+    {
+
+        /// <summary>
+        /// 媒体类型
+        /// Article=1,
+        //书籍
+        //Book = 2,
+        ////课程
+        //Curriculum = 3,
+        ////音频
+        //Audio = 4,
+        ////期刊
+        //Journal = 5,
+        ////视频
+        //Video=6
+        /// </summary>
+        [DataColumn]
+        public int MediaType { get; set; }
+        /// <summary>
+        /// 标题
+        /// </summary>
+        [DataColumn]
+        public string Title { get; set; }
+
+        /// <summary>
+        /// 标题图片
+        /// </summary>
+        [DataColumn]
+        public string ImageUrls { get; set; }
+
+        /// <summary>
+        /// 简介
+        /// </summary>
+        [DataColumn]
+        public string Summary { get; set; }
+
+        /// <summary>
+        /// 作者
+        /// </summary>
+        [DataColumn]
+        public string Author { get; set; }
+
+        /// <summary>
+        /// 来源
+        /// </summary>
+        [DataColumn]
+        public string Source { get; set; }
+
+        /// <summary>
+        /// Json内容
+        /// </summary>
+        [DataColumn(Text = true)]
+        public string Blocks { get; set; }
+       
+        /// <summary>
+        /// 审核状态
+        /// </summary>
+        [DataColumn]
+        public bool IsChecked { get; set; }
+
+        /// <summary>
+        /// 添加时间
+        /// </summary>
+        [DataColumn]
+        public DateTime AddDate { get; set; }
+        /// <summary>
+        /// 排序
+        /// </summary>
+        [DataColumn]
+        public int Sort { get; set; }
+        /// <summary>
+        /// 文章阅读量
+        /// </summary>
+        [DataColumn]
+        public int ReadCount { get; set; }
+        /// <summary>
+        /// 是否置顶
+        /// </summary>
+        [DataColumn]
+        public bool IsTop { get; set; }
+        /// <summary>
+        /// 分类ID
+        /// </summary>
+        [DataColumn]
+        public int CategoryId { get; set; }
+        /// <summary>
+        /// 标签ID
+        /// </summary>
+        [DataColumn]
+        public int LableId { get; set; }
+        /// <summary>
+        /// 是否推荐
+        /// </summary>
+        [DataColumn]
+        public bool IsRecommend { get; set; }
+        /// <summary>
+        /// 出版社
+        /// </summary>
+        [DataColumn]
+        public string Press { get; set; }
+        /// <summary>
+        /// 出版时间
+        /// </summary>
+        [DataColumn]
+        public string PublishTime { get; set; }
+    }
+}

+ 34 - 0
gx_api/GxPress/Model/GxPress.Entity/tede2/Media/MediaLibrary.cs

@@ -0,0 +1,34 @@
+using System;
+using Datory.Annotations;
+
+namespace GxPress.Entity.tede2.Media
+{
+    /// <summary>
+    /// 类别
+    /// </summary>
+    [DataTable("tede_media_library")]
+    public class MediaLibrary : Datory.Entity
+    {
+        /// <summary>
+        /// 媒体id
+        /// </summary>
+        [DataColumn]
+        public int MediaId { get; set; }
+        /// <summary>
+        /// 文件路径
+        /// </summary>
+        [DataColumn]
+        public string FileUrl { get; set; }
+        /// <summary>
+        /// 文件名称
+        /// </summary>
+        [DataColumn]
+        public string Name { get; set; }
+        /// <summary>
+        /// 排序
+        /// </summary>
+        [DataColumn]
+        public int Sort { get; set; }
+
+    }
+}

+ 10 - 6
gx_api/GxPress/Model/GxPress.EnumConst/VipTypeConst.cs

@@ -33,17 +33,21 @@ namespace GxPress.EnumConst
         AliyPay = 2
     }
     /// <summary>
-    /// 资源类型
+    /// 资源类型 文章、书籍、视频、音频、期刊
     /// </summary>
     public enum ResourceTypeConst
     {
-        //电子书
-        Book = 1,
+        Article=1,
+        //书籍
+        Book = 2,
         //课程
-        Curriculum = 2,
+        Curriculum = 3,
         //音频
-        Audio = 3,
+        Audio = 4,
         //期刊
-        Journal = 4
+        Journal = 5,
+        //视频
+        Video=6
+
     }
 }

+ 19 - 0
gx_api/GxPress/Model/GxPress.Mappings/MediaMapping.cs

@@ -0,0 +1,19 @@
+using System;
+using AutoMapper;
+using GxPress.Entity.tede2.Media;
+using GxPress.Result.Media;
+
+namespace GxPress.Mappings
+{
+    public class MediaMapping : Profile
+    {
+        public MediaMapping()
+        {
+            CreateMap<Media, MediaResult>();
+            CreateMap<MediaLibrary, MediaLibraryResult>();
+            CreateMap<MediaResult, Media>();
+            CreateMap<MediaLibraryResult, MediaLibrary>();
+        }
+
+    }
+}

+ 3 - 0
gx_api/GxPress/Model/GxPress.Request/GxPress.Request.csproj

@@ -15,4 +15,7 @@
     <ProjectReference Include="..\GxPress.Result\GxPress.Result.csproj" />
   </ItemGroup>
 
+  <ItemGroup>
+    <Folder Include="Media\" />
+  </ItemGroup>
 </Project>

+ 135 - 0
gx_api/GxPress/Model/GxPress.Request/Media/MediaRequest.cs

@@ -0,0 +1,135 @@
+using System;
+using System.Collections.Generic;
+
+namespace GxPress.Request.Media
+{
+    public class MediaRequest
+    {
+        /// <summary>
+        /// 媒体类型
+        /// Article=1,
+        //书籍
+        //Book = 2,
+        ////课程
+        //Curriculum = 3,
+        ////音频
+        //Audio = 4,
+        ////期刊
+        //Journal = 5,
+        ////视频
+        //Video=6
+        /// </summary>
+        
+        public int MediaType { get; set; }
+        /// <summary>
+        /// 标题
+        /// </summary>
+        
+        public string Title { get; set; }
+
+        /// <summary>
+        /// 标题图片
+        /// </summary>
+        
+        public string ImageUrls { get; set; }
+
+        /// <summary>
+        /// 简介
+        /// </summary>
+        
+        public string Summary { get; set; }
+
+        /// <summary>
+        /// 作者
+        /// </summary>
+        
+        public string Author { get; set; }
+
+        /// <summary>
+        /// 来源
+        /// </summary>
+        
+        public string Source { get; set; }
+
+        /// <summary>
+        /// Json内容
+        /// </summary>
+        public string Blocks { get; set; }
+
+        /// <summary>
+        /// 审核状态
+        /// </summary>
+        
+        public bool IsChecked { get; set; }
+
+        /// <summary>
+        /// 添加时间
+        /// </summary>
+        
+        public DateTime AddDate { get; set; }
+        /// <summary>
+        /// 排序
+        /// </summary>
+        
+        public int Sort { get; set; }
+        /// <summary>
+        /// 文章阅读量
+        /// </summary>
+        
+        public int ReadCount { get; set; }
+        /// <summary>
+        /// 是否置顶
+        /// </summary>
+        
+        public bool IsTop { get; set; }
+        /// <summary>
+        /// 分类ID
+        /// </summary>
+        
+        public int CategoryId { get; set; }
+        /// <summary>
+        /// 标签ID
+        /// </summary>
+        
+        public int LableId { get; set; }
+        /// <summary>
+        /// 是否推荐
+        /// </summary>
+        
+        public bool IsRecommend { get; set; }
+        /// <summary>
+        /// 出版社
+        /// </summary>
+        
+        public string Press { get; set; }
+        /// <summary>
+        /// 出版时间
+        /// </summary>
+        
+        public string PublishTime { get; set; }
+
+        /// <summary>
+        /// 媒体类
+        /// </summary>
+        public List<MediaLibraryRequest> MediaLibraryRequest { get; set; }
+
+    }
+
+    public class MediaLibraryRequest {
+        public int MediaId { get; set; }
+        /// <summary>
+        /// 文件路径
+        /// </summary>
+        public string FileUrl { get; set; }
+        /// <summary>
+        /// 文件名称
+        /// </summary>
+        
+        public string Name { get; set; }
+        /// <summary>
+        /// 排序
+        /// </summary>
+        
+        public int Sort { get; set; }
+    }
+}

+ 3 - 0
gx_api/GxPress/Model/GxPress.Result/GxPress.Result.csproj

@@ -19,4 +19,7 @@
     <ProjectReference Include="..\GxPress.EnumConst\GxPress.EnumConst.csproj" />
   </ItemGroup>
 
+  <ItemGroup>
+    <Folder Include="Media\" />
+  </ItemGroup>
 </Project>

+ 140 - 0
gx_api/GxPress/Model/GxPress.Result/Media/MediaResult.cs

@@ -0,0 +1,140 @@
+using System;
+using System.Collections.Generic;
+
+namespace GxPress.Result.Media
+{
+    public class MediaResult
+    {
+        /// <summary>
+        /// 
+        /// </summary>
+        public int Id { get; set; }
+        /// <summary>
+        /// 媒体类型
+        /// Article=1,
+        //书籍
+        //Book = 2,
+        ////课程
+        //Curriculum = 3,
+        ////音频
+        //Audio = 4,
+        ////期刊
+        //Journal = 5,
+        ////视频
+        //Video=6
+        /// </summary>
+
+        public int MediaType { get; set; }
+        /// <summary>
+        /// 标题
+        /// </summary>
+
+        public string Title { get; set; }
+
+        /// <summary>
+        /// 标题图片
+        /// </summary>
+
+        public string ImageUrls { get; set; }
+
+        /// <summary>
+        /// 简介
+        /// </summary>
+
+        public string Summary { get; set; }
+
+        /// <summary>
+        /// 作者
+        /// </summary>
+
+        public string Author { get; set; }
+
+        /// <summary>
+        /// 来源
+        /// </summary>
+
+        public string Source { get; set; }
+
+        /// <summary>
+        /// Json内容
+        /// </summary>
+        public string Blocks { get; set; }
+
+        /// <summary>
+        /// 审核状态
+        /// </summary>
+
+        public bool IsChecked { get; set; }
+
+        /// <summary>
+        /// 添加时间
+        /// </summary>
+
+        public DateTime AddDate { get; set; }
+        /// <summary>
+        /// 排序
+        /// </summary>
+
+        public int Sort { get; set; }
+        /// <summary>
+        /// 文章阅读量
+        /// </summary>
+
+        public int ReadCount { get; set; }
+        /// <summary>
+        /// 是否置顶
+        /// </summary>
+
+        public bool IsTop { get; set; }
+        /// <summary>
+        /// 分类ID
+        /// </summary>
+
+        public int CategoryId { get; set; }
+        /// <summary>
+        /// 标签ID
+        /// </summary>
+
+        public int LableId { get; set; }
+        /// <summary>
+        /// 是否推荐
+        /// </summary>
+
+        public bool IsRecommend { get; set; }
+        /// <summary>
+        /// 出版社
+        /// </summary>
+
+        public string Press { get; set; }
+        /// <summary>
+        /// 出版时间
+        /// </summary>
+
+        public string PublishTime { get; set; }
+
+        /// <summary>
+        /// 媒体类
+        /// </summary>
+        public List<MediaLibraryResult> MediaLibraryRequest { get; set; }
+
+    }
+
+    public class MediaLibraryResult
+    {
+        public int MediaId { get; set; }
+        /// <summary>
+        /// 文件路径
+        /// </summary>
+        public string FileUrl { get; set; }
+        /// <summary>
+        /// 文件名称
+        /// </summary>
+
+        public string Name { get; set; }
+        /// <summary>
+        /// 排序
+        /// </summary>
+
+        public int Sort { get; set; }
+    }
+}

+ 72 - 0
gx_api/GxPress/Repository/GxPress.Repository.Implement/Category/CategoryRepository.cs

@@ -0,0 +1,72 @@
+using System;
+using System.Collections.Generic;
+using System.Threading.Tasks;
+using AutoMapper;
+using Datory;
+using GxPress.Common.AppOptions;
+using GxPress.Common.Tools;
+using GxPress.Repository.Interface.Category;
+using Microsoft.Extensions.Options;
+using SqlKata;
+
+namespace GxPress.Repository.Implement.Category
+{
+    public class CategoryRepository : ICategoryRepository
+    {
+
+        private readonly Repository<Entity.tede2.Category.Category> _repository;
+        private readonly IMapper _mapper;
+        private readonly string _connectionString;
+        private readonly string _databaseTypestr;
+        public CategoryRepository(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.tede2.Category.Category>(database);
+            _mapper = mapper;
+        }
+
+        public IDatabase Database => _repository.Database;
+        public string TableName => _repository.TableName;
+        public List<TableColumn> TableColumns => _repository.TableColumns;
+
+        public async Task<bool> DeleteAsync(int id)
+        {
+            return await _repository.DeleteAsync(id);
+        }
+
+        public async Task<IEnumerable<Entity.tede2.Category.Category>> GetAllAsync()
+        {
+            return await _repository.GetAllAsync();
+        }
+
+        public async Task<Entity.tede2.Category.Category> GetAsync(int id)
+        {
+            return await _repository.GetAsync(id);
+        }
+
+        public async Task<IEnumerable<Entity.tede2.Category.Category>> GetCategoryChildrenAsync(int parentId)
+        {
+            return await _repository.GetAllAsync(Q.Where(nameof(Entity.tede2.Category.Category.ParentId),parentId));
+        }
+
+        public async Task<int> InsertAsync(Entity.tede2.Category.Category note)
+        {
+
+            return await _repository.InsertAsync(note);
+        }
+
+        public async Task<bool> UpdateAsync(Entity.tede2.Category.Category note)
+        {
+            return await _repository.UpdateAsync(note);
+        }
+
+        public async Task<bool> UpdateAsync(Query query)
+        {
+            return await _repository.UpdateAsync(query)>0;
+        }
+    }
+}

+ 4 - 0
gx_api/GxPress/Repository/GxPress.Repository.Implement/GxPress.Repository.Implement.csproj

@@ -21,4 +21,8 @@
     <ProjectReference Include="..\GxPress.Repository.Interface\GxPress.Repository.Interface.csproj" />
   </ItemGroup>
 
+  <ItemGroup>
+    <Folder Include="Category\" />
+    <Folder Include="Media\" />
+  </ItemGroup>
 </Project>

+ 10 - 0
gx_api/GxPress/Repository/GxPress.Repository.Implement/Media/MediaLibraryRepository.cs

@@ -0,0 +1,10 @@
+using System;
+namespace GxPress.Repository.Implement.Media
+{
+    public class MediaLibraryRepository
+    {
+        public MediaLibraryRepository()
+        {
+        }
+    }
+}

+ 102 - 0
gx_api/GxPress/Repository/GxPress.Repository.Implement/Media/MediaRepository.cs

@@ -0,0 +1,102 @@
+using System.Linq;
+using System.Collections.Generic;
+using System.Threading.Tasks;
+using AutoMapper;
+using Datory;
+using GxPress.Common.AppOptions;
+using GxPress.Common.Tools;
+using GxPress.Repository.Interface.Media;
+using GxPress.Result.Media;
+using Microsoft.Extensions.Options;
+using System.Transactions;
+
+namespace GxPress.Repository.Implement.Media
+{
+    public class MediaRepository: IMediaRepository
+    {
+        private readonly Repository<Entity.tede2.Media.Media> _repository;
+        private readonly Repository<Entity.tede2.Media.MediaLibrary> mediaLibraryRepository;
+        private readonly IMapper _mapper;
+        private readonly string _connectionString;
+        private readonly string _databaseTypestr;
+        public MediaRepository(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.tede2.Media.Media>(database);
+            mediaLibraryRepository = new Repository<Entity.tede2.Media.MediaLibrary>(database);
+            _mapper = mapper;
+        }
+
+        public IDatabase Database => _repository.Database;
+        public string TableName => _repository.TableName;
+        public List<TableColumn> TableColumns => _repository.TableColumns;
+
+        public async Task<MediaResult> GetAsync(int id)
+        {
+            var result = new MediaResult();
+            //获取媒体
+            var media= await _repository.GetAsync(id);
+            result = _mapper.Map<MediaResult>(media);
+            //获取媒体库资源
+            var mediaLibrarys= await mediaLibraryRepository.GetAllAsync(Q.Where(nameof(Entity.tede2.Media.MediaLibrary.MediaId), id));
+            result.MediaLibraryRequest = mediaLibrarys.ToList().Select(n=> _mapper.Map<MediaLibraryResult>(n)).ToList();
+            return result;
+        }
+
+        public async Task<bool> DeleteAsync(int id)
+        {
+            return await _repository.DeleteAsync(id);
+        }
+        /// <summary>
+        /// 添加媒体
+        /// </summary>
+        /// <param name="result"></param>
+        /// <returns></returns>
+        public async Task<bool> InsertAsync(MediaResult result)
+        { 
+           var model = _mapper.Map<Entity.tede2.Media.Media>(result);
+            try
+            {
+                using (var transactionScope = new TransactionScope())
+                {
+                    var id = await _repository.InsertAsync(model);
+                    if (id > 0)
+                    {
+                        foreach (var item in result.MediaLibraryRequest)
+                        {
+                            var mediaLibrary = _mapper.Map<Entity.tede2.Media.MediaLibrary>(item);
+                           await mediaLibraryRepository.InsertAsync(mediaLibrary);
+                        }
+                     
+                    }
+                    //提交事务
+                    transactionScope.Complete();
+                }
+            }
+            catch (System.Exception ex)
+            {
+                throw new Common.Exceptions.BusinessException(ex.Message);
+            }
+          
+            return true;
+        }
+
+        public async Task<bool> UpdateAsync(Entity.tede2.Media.Media 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.tede2.Media.Media>> GetAllAsync(int mediaType)
+        {
+            return await _repository.GetAllAsync(Q.Where(nameof(Entity.tede2.Media.Media.MediaType), mediaType).OrderByDesc(nameof(Entity.tede2.Media.Media.Sort)));
+        }
+    }
+}

+ 35 - 0
gx_api/GxPress/Repository/GxPress.Repository.Interface/Category/CategoryRepository.cs

@@ -0,0 +1,35 @@
+using System;
+using System.Collections.Generic;
+using System.Threading.Tasks;
+using Datory;
+
+namespace GxPress.Repository.Interface.Category
+{
+    /// <summary>
+    /// 类别
+    /// </summary>
+    public interface ICategoryRepository:IRepository
+    {
+        Task<Entity.tede2.Category.Category> GetAsync(int id);
+
+        Task<bool> DeleteAsync(int id);
+
+        Task<int> InsertAsync(Entity.tede2.Category.Category note);
+
+        Task<bool> UpdateAsync(Entity.tede2.Category.Category note);
+
+        Task<bool> UpdateAsync(SqlKata.Query query);
+        /// <summary>
+        /// 获取所有
+        /// </summary>
+        /// <returns></returns>
+
+        Task<IEnumerable<Entity.tede2.Category.Category>> GetAllAsync();
+        /// <summary>
+        /// 查询子集
+        /// </summary>
+        /// <param name="parentId"></param>
+        /// <returns></returns>
+        Task<IEnumerable<Entity.tede2.Category.Category>> GetCategoryChildrenAsync(int parentId);
+    }
+}

+ 4 - 0
gx_api/GxPress/Repository/GxPress.Repository.Interface/GxPress.Repository.Interface.csproj

@@ -21,4 +21,8 @@
     <PackageReference Include="Imazen.WebP" Version="10.0.1" />
   </ItemGroup>
 
+  <ItemGroup>
+    <Folder Include="Category\" />
+    <Folder Include="Media\" />
+  </ItemGroup>
 </Project>

+ 9 - 0
gx_api/GxPress/Repository/GxPress.Repository.Interface/Media/IMediaLibraryRepository.cs

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

+ 30 - 0
gx_api/GxPress/Repository/GxPress.Repository.Interface/Media/IMediaRepository.cs

@@ -0,0 +1,30 @@
+using System;
+using System.Collections.Generic;
+using System.Threading.Tasks;
+using Datory;
+using GxPress.Result.Media;
+
+namespace GxPress.Repository.Interface.Media
+{
+    public interface IMediaRepository:IRepository
+    {
+         Task<MediaResult> GetAsync(int id);
+        /// <summary>
+        /// 删除
+        /// </summary>
+        /// <param name="id"></param>
+        /// <returns></returns>
+         Task<bool> DeleteAsync(int id);
+        /// <summary>
+        /// 添加媒体
+        /// </summary>
+        /// <param name="result"></param>
+        /// <returns></returns>
+        Task<bool> InsertAsync(MediaResult result);
+
+         Task<bool> UpdateAsync(MediaResult result);
+       Task<bool> UpdateAsync(SqlKata.Query query);
+
+        Task<IEnumerable<Entity.tede2.Media.Media>> GetAllAsync(int mediaType);
+    }
+}