李昊 4 years ago
parent
commit
87d21c8d55

+ 10 - 0
gx_api/GxPress/Api/GxPress.Api/AdminControllers/AdminAppStartPageController.cs

@@ -48,5 +48,15 @@ namespace GxPress.Api.AdminControllers
         {
             return await appStartPageRepository.UpdateAsync(model);
         }
+        /// <summary>
+        /// 添加
+        /// </summary>
+        /// <param name="model"></param>
+        /// <returns></returns>
+        [HttpPost]
+        public async Task<bool> InsertAsync(Entity.tede2.AppStartPage.AppStartPage model)
+        {
+            return await appStartPageRepository.InsertAsync(model);
+        }
     }
 }

+ 10 - 0
gx_api/GxPress/Api/GxPress.Api/AdminControllers/AdminOrganizationController.cs

@@ -58,5 +58,15 @@ namespace GxPress.Api.AdminControllers
         {
             return await repository.UpdateIsDisableAsync(request);
         }
+        /// <summary>
+        /// 添加
+        /// /// </summary>
+        /// <param name="model"></param>
+        /// <returns></returns>
+        [HttpPost("add")]
+        public async Task<bool> InsertAsync(Entity.tede2.Organization.Organization model)
+        {
+            return await repository.InsertAsync(model);
+        }
     }
 }

+ 10 - 1
gx_api/GxPress/Repository/GxPress.Repository.Implement/AppStartPage/AppStartPageRepository.cs

@@ -9,7 +9,7 @@ using Microsoft.Extensions.Options;
 
 namespace GxPress.Repository.Implement.AppStartPage
 {
- 
+
     public class AppStartPageRepository : IAppStartPageRepository
     {
         private readonly Repository<Entity.tede2.AppStartPage.AppStartPage> _repository;
@@ -68,5 +68,14 @@ namespace GxPress.Repository.Implement.AppStartPage
         {
             return await _repository.UpdateAsync(model);
         }
+        /// <summary>
+        /// 添加
+        /// </summary>
+        /// <param name="model"></param>
+        /// <returns></returns>
+        public async Task<bool> InsertAsync(Entity.tede2.AppStartPage.AppStartPage model)
+        {
+            return await _repository.InsertAsync(model) > 0;
+        }
     }
 }

+ 9 - 0
gx_api/GxPress/Repository/GxPress.Repository.Implement/Organization/OrganizationRepository.cs

@@ -91,5 +91,14 @@ namespace GxPress.Repository.Implement.Organization
         {
             return await _repository.UpdateAsync(Q.WhereIn(nameof(Entity.tede2.Organization.Organization.Id), request.Ids).Set(nameof(Entity.tede2.Organization.Organization.IsDisable), request.IsDisable)) > 0;
         }
+        /// <summary>
+        /// 添加
+        /// </summary>
+        /// <param name="request"></param>
+        /// <returns></returns>
+        public async Task<bool> InsertAsync(Entity.tede2.Organization.Organization model)
+        {
+            return await _repository.InsertAsync(model) > 0;
+        }
     }
 }

+ 7 - 0
gx_api/GxPress/Repository/GxPress.Repository.Interface/AppStartPage/IAppStartPageRepository.cs

@@ -30,5 +30,12 @@ namespace GxPress.Repository.Interface.AppStartPage
         /// <param name="model"></param>
         /// <returns></returns>
         Task<bool> UpdateAsync(Entity.tede2.AppStartPage.AppStartPage model);
+    
+        /// <summary>
+        /// 添加
+        /// </summary>
+        /// <param name="model"></param>
+        /// <returns></returns>
+        Task<bool> InsertAsync(Entity.tede2.AppStartPage.AppStartPage model);
     }
 }

+ 6 - 0
gx_api/GxPress/Repository/GxPress.Repository.Interface/Organization/IOrganizationRepository.cs

@@ -32,5 +32,11 @@ namespace GxPress.Repository.Interface.Organization
         /// <param name="request"></param>
         /// <returns></returns>
          Task<bool> UpdateIsDisableAsync(OrganizationUpdateDisableRequest request);
+         /// <summary>
+        /// 添加
+        /// </summary>
+        /// <param name="request"></param>
+        /// <returns></returns>
+         Task<bool> InsertAsync(Entity.tede2.Organization.Organization model);
     }
 }