diff --git a/db/update/测试阶段.sql b/db/update/测试阶段.sql index 01ad5eb1..ce9f73fd 100644 --- a/db/update/测试阶段.sql +++ b/db/update/测试阶段.sql @@ -40,6 +40,9 @@ ALTER TABLE `laws_enterprise_standard` ALTER TABLE `process_standard_compliance_check` MODIFY COLUMN `applicable_market_no` varchar(2000) NULL DEFAULT NULL COMMENT '适用市场清单编号' AFTER `applicable_market`; +-- 2024-08-13 删除问题类型字典 +delete from sys_dict where dict_name = '问题类型'; +delete from sys_dict_item where dict_id = '1805489840390529026'; diff --git a/laws-modules/src/main/java/com/jero/modules/assessmentLibrary/entity/LawsEvaluationNotMetLibrary.java b/laws-modules/src/main/java/com/jero/modules/assessmentLibrary/entity/LawsEvaluationNotMetLibrary.java index ecfb26d6..eec9c6f4 100644 --- a/laws-modules/src/main/java/com/jero/modules/assessmentLibrary/entity/LawsEvaluationNotMetLibrary.java +++ b/laws-modules/src/main/java/com/jero/modules/assessmentLibrary/entity/LawsEvaluationNotMetLibrary.java @@ -189,8 +189,8 @@ public class LawsEvaluationNotMetLibrary implements Serializable { * 问题类型 */ @ApiModelProperty(value = "问题类型") - @Dict(dicCode = "problem_type") - @Excel(name = "问题类型", width = 15, orderNum = "9", dicCode = "problem_type") + @Dict(dicCode = "evaluation_result") + @Excel(name = "问题类型", width = 15, orderNum = "9", dicCode = "evaluation_result") private String problemType; /**