16 lines
169 B
Go
16 lines
169 B
Go
package model
|
|
|
|
const (
|
|
OrderSigned = 1
|
|
OrderPaid = 2
|
|
)
|
|
|
|
const (
|
|
UnConfirm = 1
|
|
Confirmed = 2
|
|
)
|
|
|
|
type ExportResponse struct {
|
|
ExportUrl string `json:"exportUrl"`
|
|
}
|