58 lines
2.0 KiB
Go
58 lines
2.0 KiB
Go
package entity
|
|
|
|
import (
|
|
"ai-agent/digital-human/consts"
|
|
|
|
"gitea.redpowerfuture.com/red-future/common/beans"
|
|
)
|
|
|
|
type digitalHumanCol struct {
|
|
beans.SQLBaseCol
|
|
Name string
|
|
Description string
|
|
AvatarURL string
|
|
VideoURL string
|
|
Voice string
|
|
Status string
|
|
Tags string
|
|
Gender string
|
|
Age string
|
|
Style string
|
|
ExternalID string
|
|
Metadata string
|
|
}
|
|
|
|
var DigitalHumanCol = digitalHumanCol{
|
|
SQLBaseCol: beans.DefSQLBaseCol,
|
|
Name: "name",
|
|
Description: "description",
|
|
AvatarURL: "avatar_url",
|
|
VideoURL: "video_url",
|
|
Voice: "voice",
|
|
Status: "status",
|
|
Tags: "tags",
|
|
Gender: "gender",
|
|
Age: "age",
|
|
Style: "style",
|
|
ExternalID: "external_id",
|
|
Metadata: "metadata",
|
|
}
|
|
|
|
// DigitalHuman 数字人形象实体
|
|
type DigitalHuman struct {
|
|
beans.SQLBaseDO `orm:",inline"`
|
|
// 基础信息
|
|
Name string `orm:"name" json:"name"` // 数字人名称
|
|
Description string `orm:"description" json:"description"` // 数字人描述
|
|
AvatarURL string `orm:"avatar_url" json:"imageUrl"` // 形象图片URL
|
|
VideoURL string `orm:"video_url" json:"videoUrl"` // 形象视频URL
|
|
Voice string `orm:"voice" json:"voice"` // 默认音色
|
|
Status consts.DigitalHumanStatus `orm:"status" json:"status"` // 状态:1启用/0停用
|
|
Tags []string `orm:"tags" json:"tags"` // 标签
|
|
Gender consts.Gender `orm:"gender" json:"gender"` // 性别
|
|
Age consts.Age `orm:"age" json:"age"` // 年龄段
|
|
Style consts.Style `orm:"style" json:"style"` // 风格:商务/休闲/正式等
|
|
ExternalID string `orm:"external_id" json:"externalId"` // 外部系统ID
|
|
Metadata []map[string]interface{} `orm:"metadata" json:"metadata"` // 动态元数据
|
|
}
|