李昊 4 년 전
부모
커밋
ab72008864

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

@@ -26,6 +26,11 @@ namespace GxPress.Api.AdminControllers
         {
             return await _repository.InsertAsync(note);
         }
+        /// <summary>
+        /// 修改
+        /// </summary>
+        /// <param name="request"></param>
+        /// <returns></returns>
         [HttpPut]
         public async Task<bool> UpdateAsync(SystemLabelUpRequest request)
         {
@@ -36,5 +41,15 @@ namespace GxPress.Api.AdminControllers
         {
             return await _repository.GetAllAsync();
         }
+        /// <summary>
+        /// 删除
+        /// </summary>
+        /// <param name="id"></param>
+        /// <returns></returns>
+        [HttpDelete("{id}")]
+        public async Task<bool> DeleteAsync(int id)
+        {
+            return await _repository.DeleteAsync(id);
+        }
     }
 }

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

@@ -86,5 +86,6 @@ namespace GxPress.Repository.Implement.SystemLabel
         {
             return await _repository.GetAllAsync(Q.WhereIn(nameof(Entity.SystemLabel.SystemLabel.Id), ids));
         }
+     
     }
 }

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

@@ -16,5 +16,6 @@ namespace GxPress.Repository.Interface.SystemLabel
         Task<bool> UpdateAsync(SystemLabelUpRequest note);
         Task<IEnumerable<Entity.SystemLabel.SystemLabel>> GetAllAsync();
         Task<IEnumerable<Entity.SystemLabel.SystemLabel>> GetAllAsync(List<int> ids);
+
     }
 }