2026-05-08 11:51:10 +08:00
|
|
|
package public
|
|
|
|
|
|
|
|
|
|
// 数据库名称
|
|
|
|
|
const (
|
|
|
|
|
DbNameBlackDeacon = "black_deacon"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
// 数据库表名
|
|
|
|
|
const (
|
|
|
|
|
TableNameCreationInfo = "creation_info"
|
|
|
|
|
TableNameFlowExecution = "flow_execution"
|
2026-05-12 13:34:28 +08:00
|
|
|
TableNameFlowTemplate = "flow_template"
|
2026-05-08 11:51:10 +08:00
|
|
|
TableNameFlowUser = "flow_user"
|
|
|
|
|
TableNameSkillTemplate = "skill_template"
|
|
|
|
|
TableNameSkillUser = "skill_user"
|
2026-05-15 09:37:23 +08:00
|
|
|
TableNameFileTemp = "file_temp"
|
2026-05-08 11:51:10 +08:00
|
|
|
)
|