Commit fc59c26b authored by suhuiguang's avatar suhuiguang

1.修改模板

parent 1a079ea8
......@@ -107,7 +107,7 @@ public class JgChangeRegistrationNameServiceImpl extends BaseService<JgChangeReg
@Autowired
ICmWorkflowService cmWorkflowService;
static String templete = "来自企业(s%)的业务办理,【申请单号:s%】";
private static String template = "来自企业(%s)的业务办理,【申请单号:%s】";
@Transactional(rollbackFor = Exception.class)
......@@ -239,7 +239,7 @@ public class JgChangeRegistrationNameServiceImpl extends BaseService<JgChangeReg
* @return 摘要
*/
private String buildTaskContent(JgChangeRegistrationName dto) {
return String.format(templete, dto.getUseUnitCreditCode(), dto.getApplyNo());
return String.format(template, dto.getUseUnitCreditCode(), dto.getApplyNo());
}
......
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