feat: 法规符合性排查流程相关实体和数据库表增加专业模块字段
- 在LawsConformityAssessmentLibraryDetail、LawsEnterpriseStandard和LawsEvaluationNotMetLibrary实体类中添加specializedModule字段,用于表示专业模块 - 在数据库的process_standard_compliance_check_detail、laws_evaluation_not_met_library和laws_conformity_assessment_library_detail表中添加相应的specialized_module列 - 更新了测试阶段.sql文件,增加了相关数据库字段的修改语句
This commit is contained in:
+7
@@ -172,6 +172,13 @@ public class LawsConformityAssessmentLibraryDetail implements Serializable {
|
||||
@Dict(dictTable = "oss_file", dicCode = "id", dicText = "file_name")
|
||||
private String unsatisfiedRequireAttach;
|
||||
|
||||
/**
|
||||
* 专业模块
|
||||
*/
|
||||
@Dict(dicCode = "professional_module")
|
||||
@ApiModelProperty(value = "专业模块")
|
||||
private String specializedModule;
|
||||
|
||||
/**
|
||||
* 关联主表Id
|
||||
*/
|
||||
|
||||
+7
@@ -297,6 +297,13 @@ public class LawsEvaluationNotMetLibrary implements Serializable {
|
||||
@Dict(dictTable = "oss_file", dicCode = "id", dicText = "file_name")
|
||||
private String unsatisfiedRequireAttach;
|
||||
|
||||
/**
|
||||
* 专业模块
|
||||
*/
|
||||
@Dict(dicCode = "professional_module")
|
||||
@ApiModelProperty(value = "专业模块")
|
||||
private String specializedModule;
|
||||
|
||||
@TableField(exist = false)
|
||||
private static final long serialVersionUID = 1L;
|
||||
}
|
||||
+1
@@ -228,6 +228,7 @@ public class LawsEnterpriseStandard implements Serializable {
|
||||
/**
|
||||
* 专业模块
|
||||
*/
|
||||
@Dict(dicCode = "professional_module")
|
||||
@ApiModelProperty(value = "专业模块")
|
||||
private String specializedModule;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user