fix: update app key
This commit is contained in:
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user