李昊 4 年之前
父节点
当前提交
333835970d

+ 6 - 1
gx_api/GxPress/Api/GxPress.Api/AdminControllers/AdminAppStartPageController.cs

@@ -1,5 +1,6 @@
 using System.Collections.Generic;
 using System.Threading.Tasks;
+using GxPress.Auth;
 using GxPress.Repository.Interface.AppStartPage;
 using Microsoft.AspNetCore.Authorization;
 using Microsoft.AspNetCore.Mvc;
@@ -14,10 +15,12 @@ namespace GxPress.Api.AdminControllers
     [Authorize]
     public class AdminAppStartPageController : Controller
     {
+        private readonly ILoginContext _loginContext;
         private readonly IAppStartPageRepository appStartPageRepository;
-        public AdminAppStartPageController(IAppStartPageRepository appStartPageRepository)
+        public AdminAppStartPageController(IAppStartPageRepository appStartPageRepository, ILoginContext _loginContext)
         {
             this.appStartPageRepository = appStartPageRepository;
+            this._loginContext = _loginContext;
         }
         /// <summary>
         /// 查询
@@ -56,6 +59,8 @@ namespace GxPress.Api.AdminControllers
         [HttpPost]
         public async Task<bool> InsertAsync(Entity.tede2.AppStartPage.AppStartPage model)
         {
+            model.Creator = _loginContext.Name;
+            model.AdminId = _loginContext.AccountId;
             return await appStartPageRepository.InsertAsync(model);
         }
     }

+ 6 - 0
gx_api/GxPress/Model/GxPress.Entity/tede2/Organization/Organization.cs

@@ -69,5 +69,11 @@ namespace GxPress.Entity.tede2.Organization
         /// <value></value>
         [DataColumn]
         public bool IsClose { get; set; }
+        /// <summary>
+        /// 设备数量
+        /// </summary>
+        /// <value></value>
+        [DataColumn]
+        public int FacilityCount{get;set;}
     }
 }

+ 5 - 0
gx_api/GxPress/Model/GxPress.Result/Organization/OrganizationRequest.cs

@@ -78,6 +78,11 @@ namespace GxPress.Result.Organization
         /// </summary>
         /// <value></value>
         public int IsClose { get; set; }
+         /// <summary>
+        /// 设备数量
+        /// </summary>
+        /// <value></value>
+        public int FacilityCount{get;set;}
     }
     /// <summary>
     /// 修改启用停用

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

@@ -56,6 +56,8 @@ namespace GxPress.Repository.Implement.Organization
                 organization.IsClose = request.IsClose == 1;
             if (request.IsDisable > 0)
                 organization.IsDisable = request.IsDisable == 1;
+            if (request.FacilityCount > 0)
+                organization.FacilityCount = request.FacilityCount;
             if (!string.IsNullOrEmpty(request.LinkName))
                 organization.LinkName = request.LinkName;
             if (!string.IsNullOrEmpty(request.LinkPhone))