李昊 4 years ago
parent
commit
bcc85fb888

+ 3 - 2
gx_api/GxPress/Api/GxPress.Api/AdminControllers/AdminAppStartPageController.cs

@@ -2,6 +2,7 @@ using System.Collections.Generic;
 using System.Threading.Tasks;
 using GxPress.Auth;
 using GxPress.Repository.Interface.AppStartPage;
+using GxPress.Request.AppStartPage;
 using Microsoft.AspNetCore.Authorization;
 using Microsoft.AspNetCore.Mvc;
 
@@ -47,9 +48,9 @@ namespace GxPress.Api.AdminControllers
         /// <param name="model"></param>
         /// <returns></returns>
         [HttpPut("")]
-        public async Task<bool> UpdateAsync(Entity.tede2.AppStartPage.AppStartPage model)
+        public async Task<bool> UpdateAsync(AppStartPageUpdateRequest request)
         {
-            return await appStartPageRepository.UpdateAsync(model);
+            return await appStartPageRepository.UpdateAsync(request);
         }
         /// <summary>
         /// 添加

+ 86 - 0
gx_api/GxPress/Model/GxPress.Request/AppStartPage/AppStartPageRequest.cs

@@ -0,0 +1,86 @@
+namespace GxPress.Request.AppStartPage
+{
+    public class AppStartPageRequest
+    {
+
+    }
+    /// <summary>
+    /// 修改
+    /// </summary>
+    public class AppStartPageUpdateRequest
+    {
+        /// <summary>
+        /// Id
+        /// </summary>
+        /// <value></value>
+        public int Id { get; set; }
+        /// <summary>
+        /// 图片
+        /// </summary>
+
+        public string ImageUrl { get; set; }
+        /// <summary>
+        /// 标题
+        /// </summary>
+        /// <value></value>
+
+        public string Title { get; set; }
+        /// <summary>
+        /// 操作人
+        /// </summary>
+        /// <value></value>
+
+        public string Creator { get; set; }
+
+        /// <summary>
+        /// 操作人姓名
+        /// </summary>
+        /// <value></value>
+
+        public int AdminId { get; set; }
+        /// <summary>
+        /// App类型 1 ios 2 android
+        /// </summary>
+        /// <value></value>
+
+        public int AppTypeId { get; set; }
+        /// <summary>
+        /// 连接类型 1 内部 2 外部
+        /// </summary>
+        /// <value></value>
+
+        public int TypeId { get; set; }
+        /// <summary>
+        /// 外部连接地址
+        /// </summary>
+        /// <value></value>
+
+        public string Url { get; set; }
+        /// <summary>
+        /// 数据类型ID
+        /// </summary>
+        /// <value></value>
+
+        public int DataTypeId { get; set; }
+
+        /// <summary>
+        /// 数据ID
+        /// </summary>
+        /// <value></value>
+
+        public int DataId { get; set; }
+
+        /// <summary>
+        /// 是否禁用
+        /// </summary>
+        /// <value></value>
+
+        public int IsDisable { get; set; }
+        /// <summary>
+        /// 启动秒
+        /// </summary>
+        /// <value></value>
+
+        public int Second { get; set; }
+    }
+}

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

@@ -5,6 +5,7 @@ using Datory;
 using GxPress.Common.AppOptions;
 using GxPress.Common.Tools;
 using GxPress.Repository.Interface.AppStartPage;
+using GxPress.Request.AppStartPage;
 using Microsoft.Extensions.Options;
 
 namespace GxPress.Repository.Implement.AppStartPage
@@ -64,8 +65,31 @@ namespace GxPress.Repository.Implement.AppStartPage
         /// </summary>
         /// <param name="model"></param>
         /// <returns></returns>
-        public async Task<bool> UpdateAsync(Entity.tede2.AppStartPage.AppStartPage model)
+        public async Task<bool> UpdateAsync(AppStartPageUpdateRequest request)
         {
+            var model = await _repository.GetAsync(request.Id);
+            if (!string.IsNullOrEmpty(request.ImageUrl))
+                model.ImageUrl = StringUtils.RemoveDomain(request.ImageUrl);
+            if (request.IsDisable > 0)
+                model.IsDisable = request.IsDisable == 1;
+            if (request.Second > 0)
+                model.Second = request.Second;
+            if (!string.IsNullOrEmpty(request.Title))
+                model.Title = request.Title;
+            if (request.TypeId > 0)
+                model.TypeId = request.TypeId;
+            if (!string.IsNullOrEmpty(request.Url))
+                model.Url = request.Url;
+            if (request.AdminId > 0)
+                model.AdminId = request.AdminId;
+            if (request.AppTypeId > 0)
+                model.AppTypeId = request.AppTypeId;
+            if (!string.IsNullOrEmpty(request.Creator))
+                model.Creator = request.Creator;
+            if (request.DataId > 0)
+                model.DataId = request.DataId;
+            if (request.DataTypeId > 0)
+                model.DataTypeId = request.DataTypeId;
             return await _repository.UpdateAsync(model);
         }
         /// <summary>

+ 3 - 2
gx_api/GxPress/Repository/GxPress.Repository.Interface/AppStartPage/IAppStartPageRepository.cs

@@ -1,6 +1,7 @@
 using System.Collections.Generic;
 using System.Threading.Tasks;
 using Datory;
+using GxPress.Request.AppStartPage;
 
 namespace GxPress.Repository.Interface.AppStartPage
 {
@@ -29,8 +30,8 @@ namespace GxPress.Repository.Interface.AppStartPage
         /// </summary>
         /// <param name="model"></param>
         /// <returns></returns>
-        Task<bool> UpdateAsync(Entity.tede2.AppStartPage.AppStartPage model);
-    
+        Task<bool> UpdateAsync(AppStartPageUpdateRequest request);
+
         /// <summary>
         /// 添加
         /// </summary>