feat(api): 添加 parentId 和 choiceContent 字段支持

- 在 cmsDesign 模型中添加 parentId 字段
- 在 hjmChoices 模型中添加 choiceContent 字段
- 更新 shopExpressTemplate 模型字段注释并添加 sortNumber 和 comments 字段
- 更新 shopGoodsCoupon 模型添加 comments 字段- 在多个 Vue 组件中移除冗余字段并设置默认值- 移除未使用的导入和相关逻辑代码
- 清理版本管理页面的无用代码和样式
This commit is contained in:
2025-09-26 11:52:30 +08:00
parent 6ee52c4945
commit 1d3a94437c
18 changed files with 13 additions and 146 deletions

View File

@@ -26,6 +26,8 @@ export interface HjmChoices {
createTime?: string;
// 修改时间
updateTime?: string;
// 选择题内容
choiceContent?: string;
}
/**