fix: 法规符合性评估库查询问题
This commit is contained in:
+13
@@ -162,5 +162,18 @@ public class LawsConformityAssessmentLibraryExportVO implements Serializable {
|
||||
@ExcelCollection(name = "")
|
||||
private List<MaterialFile> materialFileList = Collections.emptyList();
|
||||
|
||||
/**
|
||||
* 佐证材料
|
||||
*/
|
||||
@ApiModelProperty(value = "辅助说明材料")
|
||||
private String unsatisfiedRequireAttach;
|
||||
|
||||
/**
|
||||
* 佐证材料
|
||||
*/
|
||||
@ApiModelProperty(value = "辅助说明材料")
|
||||
@ExcelCollection(name = "")
|
||||
private List<UnsatisfiedRequireAttachFile> unsatisfiedRequireAttachList = Collections.emptyList();
|
||||
|
||||
|
||||
}
|
||||
+15
@@ -0,0 +1,15 @@
|
||||
package com.jero.modules.assessmentLibrary.entity.vo;
|
||||
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
import org.jeecgframework.poi.excel.annotation.Excel;
|
||||
|
||||
@Data
|
||||
public class UnsatisfiedRequireAttachFile {
|
||||
@ApiModelProperty(value = "id")
|
||||
private String id;
|
||||
|
||||
@Excel(name = "辅助说明材料", width = 15)
|
||||
@ApiModelProperty(value = "辅助说明材料")
|
||||
private String fileName;
|
||||
}
|
||||
Reference in New Issue
Block a user