1.修改列表模板名称

This commit is contained in:
wr
2024-08-23 11:49:07 +08:00
parent ceb95be340
commit 6e8a188172
4 changed files with 6 additions and 10 deletions

View File

@@ -265,10 +265,7 @@ public class SurveyPlanServiceImpl extends ServiceImpl<SurveyPlanMapper, SurveyP
if(Objects.nonNull(data)){
name = data.getName();
}
String sign = "监督类型为:".concat(name)
.concat(",由")
.concat(surveyPlanVO.getDeptName())
.concat("负责")
String sign = name.concat("->")
.concat(surveyPlanVO.getPlanName());
bpmInstanceInfo.setInstanceSign(sign);
return bpmInstanceInfo;

View File

@@ -301,8 +301,7 @@ public class SurveyTestServiceImpl extends ServiceImpl<SurveyTestMapper, SurveyT
if(Objects.nonNull(data)){
name = data.getName();
}
String sign = "监督类型为:".concat(name)
.concat("")
String sign = name.concat("")
.concat(surveyTestVO.getDeptName())
.concat("负责")
.concat(surveyTestVO.getPlanName())