25 lines
548 B
Go
25 lines
548 B
Go
package data
|
|
|
|
import "time"
|
|
|
|
type Card struct {
|
|
OrderNumber string
|
|
ResellerId int
|
|
ResellerOrderNumber string
|
|
OursProductId int
|
|
Price float32
|
|
Quantity int
|
|
Amount float32
|
|
PayStatus int
|
|
Status int
|
|
Profit float32
|
|
NotifyUrl string
|
|
NotifyTime time.Time
|
|
CreateIp int
|
|
CreateTime time.Time
|
|
CardCode string
|
|
FinishTime time.Time
|
|
Message string
|
|
Mobile string
|
|
}
|