fix: update app key

This commit is contained in:
2025-12-20 22:48:02 +08:00
parent 08d5e37d0e
commit 770c334083
5 changed files with 36 additions and 5 deletions

View File

@@ -8,9 +8,9 @@ type RecognitionResult struct {
BaseModel
TaskID int64 `gorm:"column:task_id;bigint;not null;default:0;comment:任务ID" json:"task_id"`
TaskType TaskType `gorm:"column:task_type;varchar(16);not null;comment:任务类型;default:''" json:"task_type"`
Latex string `json:"latex"`
Markdown string `json:"markdown"` // Mathpix Markdown 格式
MathML string `json:"mathml"` // MathML 格式
Latex string `json:"latex" gorm:"column:latex;type:text;not null;default:''"`
Markdown string `json:"markdown" gorm:"column:markdown;type:text;not null;default:''"` // Mathpix Markdown 格式
MathML string `json:"mathml" gorm:"column:mathml;type:text;not null;default:''"` // MathML 格式
}
type RecognitionResultDao struct {