| 12345678910111213 |
- package models
- //各模块的提示词拼接库0、AI问答,1、安全培训,2、AI写作,3、考试工坊
- type Prompt struct {
- BaseModel
- Prompt string `gorm:"type:text;not null;comment:提示词" json:"prompt"`
- BusinessType int `gorm:"type:tinyint;not null;comment:业务类型(0、AI问答,1、安全培训,2、AI写作,3、考试工坊)" json:"business_type"`
- }
- // TableName 指定表名
- func (Prompt) TableName() string {
- return "prompt"
- }
|