ai_scheduler/internal/entitys/advicer_data.go

30 lines
1.1 KiB
Go
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package entitys
type AdvicerInitReq struct {
AdvicerID int32 `json:"advicer_id"`
ProjectID int32 `json:"project_id"`
Name string `json:"name"` // 姓名
Birth string `json:"birth"` // 用户名称
Gender int32 `json:"gender"` // 1:男2
WorkingYears int32 `json:"working_years"` // 工作年限
}
type AdvicerListReq struct {
ProjectId int32 `json:"project_id"`
}
type AdvicerVersionInitReq struct {
VersionID int32 `json:"version_id"`
AdvicerID int32 `json:"advicer_id"`
VersionDesc string `json:"version_desc"` // 版本名称
DialectFeatures string `json:"dialect_features"` // 语言风格
SentencePatterns string `json:"sentence_patterns"` // 句子模式
ToneTags string `json:"tone_tags"` // 语气标签
PersonalityTags string `json:"personality_tags"` // 个性标签
SignatureDialogues string `json:"signature_dialogues"` // 代表性对话示例
}
type AdvicerVersionListReq struct {
AdvicerID int32 `json:"advicer_id"`
}