项目移交接口更改项目状态

dev
陈伟 2025-05-25 10:44:10 +08:00
parent 3f01b4140e
commit 69b1d0e155
1 changed files with 2 additions and 0 deletions

View File

@ -517,6 +517,8 @@ namespace OpenAuth.App.ServiceApp.DroneSsnydManage
public async Task ProjectHandover(ProjectHandoverReq req)
{
var project = req.MapTo<DroneSsnyd>();
project.handle_status_id = 98;
project.handle_status_name = "项目移交";
await Repository.AsUpdateable(project).IgnoreNullColumns().ExecuteCommandAsync();
}