19 lines
417 B
Go
19 lines
417 B
Go
package formula
|
|
|
|
type CreateTaskResponse struct {
|
|
TaskNo string `json:"task_no"`
|
|
Status int `json:"status"`
|
|
}
|
|
|
|
type GetFormulaTaskResponse struct {
|
|
TaskNo string `json:"task_no"`
|
|
Status int `json:"status"`
|
|
Count int `json:"count"`
|
|
Latex string `json:"latex"`
|
|
}
|
|
|
|
// FormulaRecognitionResponse 公式识别服务返回的响应
|
|
type FormulaRecognitionResponse struct {
|
|
Result string `json:"result"`
|
|
}
|