30 lines
1.6 KiB
Go
30 lines
1.6 KiB
Go
// Code generated by gorm.io/gen. DO NOT EDIT.
|
|
// Code generated by gorm.io/gen. DO NOT EDIT.
|
|
// Code generated by gorm.io/gen. DO NOT EDIT.
|
|
|
|
package model
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
const TableNameAiAdviceAdvicerVersion = "ai_advice_advicer_version"
|
|
|
|
// AiAdviceAdvicerVersion mapped from table <ai_advice_advicer_version>
|
|
type AiAdviceAdvicerVersion struct {
|
|
VersionID int32 `gorm:"column:version_id;primaryKey;autoIncrement:true" json:"version_id"`
|
|
AdvicerID int32 `gorm:"column:advicer_id;not null" json:"advicer_id"`
|
|
VersionDesc string `gorm:"column:version_desc;not null;comment:版本名称" json:"version_desc"` // 版本名称
|
|
DialectFeatures string `gorm:"column:dialect_features;not null;comment:语言风格" json:"dialect_features"` // 语言风格
|
|
SentencePatterns string `gorm:"column:sentence_patterns;comment:句子模式" json:"sentence_patterns"` // 句子模式
|
|
ToneTags string `gorm:"column:tone_tags;comment:语气标签" json:"tone_tags"` // 语气标签
|
|
PersonalityTags string `gorm:"column:personality_tags;not null;comment:个性标签" json:"personality_tags"` // 个性标签
|
|
SignatureDialogues string `gorm:"column:signature_dialogues;comment:代表性对话示例" json:"signature_dialogues"` // 代表性对话示例
|
|
CreateAt time.Time `gorm:"column:create_at;default:CURRENT_TIMESTAMP" json:"create_at"`
|
|
}
|
|
|
|
// TableName AiAdviceAdvicerVersion's table name
|
|
func (*AiAdviceAdvicerVersion) TableName() string {
|
|
return TableNameAiAdviceAdvicerVersion
|
|
}
|