package model

const (
	OrderSigned = 1
	OrderPaid   = 2
)

const (
	UnConfirm = 1
	Confirmed = 2
)

type ExportResponse struct {
	ExportUrl string `json:"exportUrl"`
}