|
@@ -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);
|
|
|
+ }
|
|
|
}
|
|
|
}
|