Commit 5a36dbc7 authored by zhangsen's avatar zhangsen

告知申请回显API接收参数名称修改

parent 4d956532
......@@ -403,13 +403,13 @@ public class InstallNoticeController extends BaseController {
/**
* 告知页面回显内容
* @param projectId
* @param projectId 由于跳转是已有功能,前端处理传参为行数据的 sequenceNbr字段 所以这里的接参的参数名改为 sequenceNbr
* @return
*/
@TycloudOperation(ApiLevel = UserType.AGENCY, needAuth = false)
@GetMapping(value = "/getInfoByProjectId")
@ApiOperation(value = "告知页面回显内容", notes = "告知页面回显内容")
public ResponseModel<InstallNoticeDto> getInfoByProjectId(@RequestParam Long projectId) {
public ResponseModel<InstallNoticeDto> getInfoByProjectId(@RequestParam("sequenceNbr") Long projectId) {
if (ObjectUtils.isEmpty(projectId)) {
return null;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment