修改因子问题
This commit is contained in:
parent
77a0c62a3e
commit
5e718c3b33
|
@ -37,12 +37,6 @@ public class SysScaleQuestionVo implements Serializable {
|
|||
@ExcelProperty(value = "所属测评量表id")
|
||||
private Long scaleId;
|
||||
|
||||
/**
|
||||
* 测评量表标题
|
||||
*/
|
||||
@ExcelProperty(value = "测评量表标题")
|
||||
private String scaleTitle;
|
||||
|
||||
/**
|
||||
* 问题序号
|
||||
*/
|
||||
|
|
|
@ -173,6 +173,9 @@ public class SysScalePublishServiceImpl implements ISysScalePublishService {
|
|||
lqw.eq(SysScalePublish::getStatus, 0);
|
||||
sysScalePublishVo = baseMapper.selectVoOne(lqw);
|
||||
}
|
||||
if (sysScalePublishVo == null) {
|
||||
return new SysScalePublishVo();
|
||||
}
|
||||
Long batchNo = sysScalePublishVo.getBatchNo();
|
||||
String scaleIds = sysScalePublishVo.getScaleIds();
|
||||
List<SysScaleVo> publishScaleVos = sysScaleMapper.findSysScaleByIds(StrUtil.join(StrUtil.COMMA, scaleIds));
|
||||
|
|
Loading…
Reference in New Issue