chore(emergency): 修正部署SQL,同步实体字典引用

- STATUS DEFAULT 改为 0(草稿)
- PARENT_ID 注释修正
- 删除 first_aid_resource_status/first_aid_category_type 字典
- 同步移除实体 @Excel 注解中对应 dicCode

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
2026-06-26 15:38:08 +08:00
co-authored by Claude
parent 3c5bfc8ad1
commit bbb0d5b0f8
3 changed files with 202 additions and 2 deletions
@@ -125,7 +125,7 @@ public class FirstAidResource implements Serializable {
private Integer favoriteCount;
/** 发布状态(0=草稿,1=已发布,2=已下架) */
@Excel(name = "状态", width = 15, dicCode = "first_aid_resource_status")
@Excel(name = "状态", width = 15)
@Schema(title = "发布状态(0=草稿,1=已发布,2=已下架)")
private Integer status;
@@ -37,7 +37,7 @@ public class FirstAidResourceCategory implements Serializable {
private String name;
/** 类型(1=分类,2=标签) */
@Excel(name = "类型", width = 15, dicCode = "first_aid_category_type")
@Excel(name = "类型", width = 15)
@Schema(title = "类型(1=分类,2=标签)")
private Integer type;