15 lines
206 B
Go
15 lines
206 B
Go
package types
|
|
|
|
type GetExcelReq struct {
|
|
Sender string
|
|
Product string
|
|
StartTime string
|
|
EndTime string
|
|
TimeStamp string
|
|
}
|
|
|
|
type GetExcelRes struct {
|
|
Mediciones []Mediciones
|
|
TimeStamp string
|
|
}
|