修改质量接口

This commit is contained in:
高飞 2023-04-02 19:31:43 +08:00
parent 7e432d0fad
commit d1e5acadb5
1 changed files with 6 additions and 0 deletions

View File

@ -472,6 +472,12 @@ namespace Mvc.Controllers
res.resultValue = BLL.SQLHelper.RunProcNewId("SpGetThreeNumber", "Meeting_CQMSMeeting", "MeetingCode", projectId, prefix);
}
break;
case "rewardAndPunish":
{
string prefix = BLL.ProjectService.GetProjectCodeByProjectId(projectId) + "-" + BLL.UnitService.GetUnitCodeByUnitId(unitId) + "-ZLJC-";
res.resultValue = BLL.SQLHelper.RunProcNewId("SpGetThreeNumber", "RewardAndPunish_RewardAndPunish", "RewardAndPunishCode", projectId, prefix);
}
break;
}
return res;
}