customer/internal/models/templategen.go

13 lines
324 B
Go
Raw Normal View History

2023-11-25 18:28:26 +00:00
package models
2023-11-29 19:01:14 +00:00
type RespGeneratorService struct {
DocNumber int `json:"docnumber"`
Date string `json:"date"`
OrgTaxNum string `json:"orgtaxnum"`
OrgName Name `json:"orgname"`
Name string `json:"name"`
Amount uint64 `json:"amount"`
Price int64 `json:"price"`
Sum int64 `json:"sum"`
2023-11-25 18:28:26 +00:00
}