修改质量接口

This commit is contained in:
2023-03-17 09:59:48 +08:00
parent eef27faf84
commit 4a3fb76c8c
12 changed files with 962 additions and 74 deletions
@@ -183,6 +183,8 @@ namespace WebAPI.Controllers
return res;
}
///获取单位接口 Unit/getProjectUnitLists(projectId)
/// <summary>
/// 获取主持人信息
/// </summary>
@@ -240,6 +242,25 @@ namespace WebAPI.Controllers
return responeData;
}
/// <summary>
/// 根据是否同意获取办理步骤
/// </summary>
/// <returns></returns>
public Model.ResponeData getChangeHandle(bool isAgree)
{
var responeData = new Model.ResponeData();
try
{
responeData.data = isAgree == true ? Const.CQMSMeeting_Complete : Const.CQMSMeeting_ReCompile;
}
catch (Exception ex)
{
responeData.code = 0;
responeData.message = ex.Message;
}
return responeData;
}
/// <summary>
/// 根据办理步骤获取办理人
/// </summary>