This commit is contained in:
SunCheng
2026-02-15 10:10:28 +08:00
parent e51a3edd50
commit a88556c784
92 changed files with 6751 additions and 776 deletions

View File

@@ -88,4 +88,14 @@ public class TransactionCategoryController(
await categoryApplication.UpdateSelectedIconAsync(request);
return "更新图标成功".Ok();
}
/// <summary>
/// 删除分类图标
/// </summary>
[HttpDelete("{id}")]
public async Task<BaseResponse> DeleteIconAsync(long id)
{
await categoryApplication.DeleteIconAsync(id);
return "删除图标成功".Ok();
}
}