Commit 7ef3955d authored by unset's avatar unset

添加通知信息

parent 5366b598
......@@ -70,6 +70,10 @@ public class IndustryApplicationInfoBiz extends BaseBiz<IndustryApplicationInfoM
if (old == null || old.getIsDel() == 1) {
return ObjectRestResponse.createFailedResult(ResultCode.NOTEXIST_CODE, ResultCode.getMsg(ResultCode.NOTEXIST_CODE));
}
IndustryApplicationType industryTypeVo = industryApplicationTypeBiz.selectById(old.getFirstTypeId());
if (industryTypeVo != null) {
old.setFirstTitle(industryTypeVo.getTitle());
}
return ObjectRestResponse.succ(old);
}
......
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