mirror of
https://github.com/serty2005/rmser.git
synced 2026-02-05 03:12:34 -06:00
16 lines
513 B
Go
16 lines
513 B
Go
package ocr_client
|
|
|
|
// RecognitionResult - ответ от Python сервиса
|
|
type RecognitionResult struct {
|
|
Items []RecognizedItem `json:"items"`
|
|
DocNumber string `json:"doc_number"`
|
|
DocDate string `json:"doc_date"`
|
|
}
|
|
|
|
type RecognizedItem struct {
|
|
RawName string `json:"raw_name"` // Текст названия из чека
|
|
Amount float64 `json:"amount"` // Кол-во
|
|
Price float64 `json:"price"` // Цена
|
|
Sum float64 `json:"sum"` // Сумма
|
|
}
|