fix: scc流程办理报错
This commit is contained in:
+1
@@ -225,6 +225,7 @@ public class ProcessStandardComplianceCheckDetail implements Serializable {
|
||||
@ApiModelProperty(value = "是否与上一版相同(字典:1:是,0:否)")
|
||||
@Excel(name = "是否与上一版相同", width = 15, dicCode = "yn")
|
||||
@Dict(dicCode = "yn")
|
||||
@TableField(exist = false)
|
||||
private String isSameAsPrevVersion;
|
||||
|
||||
/**
|
||||
|
||||
+11
@@ -51,9 +51,20 @@ public class LawsEvaluationNotMetLibraryServiceImpl extends ServiceImpl<LawsEval
|
||||
@Value("${jero.path.exportExcelTempPath}")
|
||||
private String exportExcelTempPath;
|
||||
private static final String EXPORT_EXCEL_TEMP = "exportExcelTemp";
|
||||
/**
|
||||
* 法规管理员
|
||||
*/
|
||||
@Value("${sys_role.laws_admin}")
|
||||
private String lawsAdmin;
|
||||
/**
|
||||
* 超级管理员
|
||||
*/
|
||||
@Value("${sys_role.super_admin}")
|
||||
private String superAdmin;
|
||||
|
||||
@Override
|
||||
public IPage<LawsEvaluationNotMetLibrary> queryPage(LawsEvaluationNotMetLibrary lawsEvaluationNotMet, Integer pageNo, Integer pageSize, HttpServletRequest req) {
|
||||
// TODO 权限
|
||||
QueryWrapper<LawsEvaluationNotMetLibrary> queryWrapper = QueryGenerator.initQueryWrapper(lawsEvaluationNotMet, req.getParameterMap());
|
||||
queryWrapper.like(StringUtils.isNotBlank(lawsEvaluationNotMet.getStandardNumber()),
|
||||
"nm.standard_number", lawsEvaluationNotMet.getStandardNumber());
|
||||
|
||||
Reference in New Issue
Block a user