fonchain-fiee/pkg/service/bundle/model/orderStatus.go

16 lines
169 B
Go
Raw Normal View History

2025-02-21 13:09:29 +00:00
package model
const (
OrderSigned = 1
OrderPaid = 2
)
2025-05-09 08:24:39 +00:00
const (
UnConfirm = 1
Confirmed = 2
)
type ExportResponse struct {
ExportUrl string `json:"exportUrl"`
}