refactor: ♻️ 基础框架的实体更新逻辑 (#137)

Co-authored-by: tk <fiyne1a@dingtalk.com>
This commit is contained in:
2024-06-07 00:13:14 +08:00
committed by GitHub
parent f5bd69ef60
commit 56b111b1cf
192 changed files with 3011 additions and 1426 deletions

View File

@@ -81,13 +81,4 @@ public sealed class ExampleController(IExampleCache cache) : ControllerBase<IExa
{
return Cache.QueryAsync(req);
}
/// <summary>
/// 更新示例
/// </summary>
[Transaction]
public Task<QueryExampleRsp> UpdateAsync(UpdateExampleReq req)
{
return Cache.UpdateAsync(req);
}
}