feat: 新增创作作品管理模块及相关配置

This commit is contained in:
2026-05-08 11:51:10 +08:00
parent 74ede5bc0f
commit 2aec7fe30f
3 changed files with 18 additions and 14 deletions

View File

@@ -0,0 +1,15 @@
package public
// 数据库名称
const (
DbNameBlackDeacon = "black_deacon"
)
// 数据库表名
const (
TableNameCreationInfo = "creation_info"
TableNameFlowExecution = "flow_execution"
TableNameFlowUser = "flow_user"
TableNameSkillTemplate = "skill_template"
TableNameSkillUser = "skill_user"
)

View File

@@ -1,11 +0,0 @@
package consts
// 数据库名称
const (
DbNameBlackDeacon = "black_deacon"
)
// 数据库表名
const (
TableNameCreationInfo = "creation_info"
)