30 lines
1.1 KiB
Go
30 lines
1.1 KiB
Go
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"`
|
||
}
|