1.修改列表模板名称
This commit is contained in:
@@ -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;
|
||||
|
||||
@@ -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())
|
||||
|
||||
Reference in New Issue
Block a user