24 lines
376 B
Go
24 lines
376 B
Go
package bbxt
|
|
|
|
type ResellerLoss struct {
|
|
ResellerId int32
|
|
ResellerName string
|
|
Total float64
|
|
ProductLoss map[int32]ProductLoss
|
|
}
|
|
|
|
type ProductLoss struct {
|
|
ProductId int32
|
|
ProductName string
|
|
Loss float64
|
|
}
|
|
|
|
type ReportRes struct {
|
|
ReportName string
|
|
Title string
|
|
Path string
|
|
Url string
|
|
Data [][]string
|
|
Desc string
|
|
}
|