提交 01f0fa0d 作者: xiaowang

修改:返回参数

上级 27900b4b
......@@ -72,7 +72,7 @@ public class CooperationController extends BaseController {
public ResultBody applyTagDetails(
@RequestParam(value = "id") Integer id,
@RequestParam(value = "userAccountId") Integer userAccountId) {
return ResultBody.success(cooperationService.applyTagDetails(id, userAccountId));
return cooperationService.applyTagDetails(id, userAccountId);
}
@ApiOperation(value = "审批")
......
......@@ -119,6 +119,7 @@ public class CooperationServiceImpl implements CooperationService {
userApplyTagDetailsVO.setAttachmentList(list);
}
userApplyTagDetailsVO.setCompanyName(companyAuthDO.getCompanyName());
userApplyTagDetailsVO.setLicenseImg(companyAuthDO.getLicenseImg());
userApplyTagDetailsVO.setCreditCode(companyAuthDO.getCreditCode());
userApplyTagDetailsVO.setRemark(userApplyTag.getRemark());
return ResultBody.success(userApplyTagDetailsVO);
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论