123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111 |
- package apis
- type TGdDataApiCombo struct {
- Id int64
- QueryTypeId int64
- Count int
- Price float64
- Type int
- TotalDay int
- CreateTime string
- IsFree bool
- UpdateTime string
- }
- type TGdDataApiOrder struct {
- Id int64 `json:"-"`
- OrderNo string `json:"order_no"`
- MerchantId int64 `json:"merchant_id"`
- ComboId int64 `json:"combo_id"`
- ComboDesc string `json:"combo_desc"`
- QueryTypeId int64 `json:"query_type_id"`
- GoodsPrice float64 `json:"goods_price"`
- Status int `json:"status"`
- Count int `json:"count"`
- BuyAccount string `json:"buy_account"`
- PayType int `json:"pay_type"`
- CreateTime string `json:"-"`
- }
- type TGdChildDataApi struct {
- Id int64
- ApiId int64
- QueryTypeId int64
- ProviderApis string
- RequestParam string
- ResponseParam string
- CountType byte
- CountCode string
- ForceUpdate bool
- IsCrypto bool
- CreateTime string
- UpdateTime string
- }
- type ManagementAddOrderReq struct {
- MerchantId int64 `json:"merchant_id" description:""`
- QueryTypeId int64 `json:"query_type_id"`
- ComboId int64 `json:"combo_id" description:""`
- }
- type ManagementAddOrderReply struct {
- OrderId int64 `json:"order_id" description:""`
- }
- type ManagementPayOrderReq struct {
- OrderId int64 `json:"order_id" description:""`
- }
- type ManagementPayOrderReply struct {
- }
- type ManagementGetMerchantOrderListReq struct {
- MerchantId int64 `json:"merchant_id" description:""`
- PageNumber int `json:"page_number" description:""`
- PageSize int `json:"page_size"`
- DataApiName string `json:"data_api_name" description:""`
- StatusCode int `json:"status_code" description:"订单状态"`
- StartTime string `json:"start_time" description:"下单开始时间"`
- EndTime string `json:"end_time" description:"下单结束时间"`
- }
- type MerchantOrderItem struct {
- OrderNo string `json:"order_no" description:""`
- OrderId int64 `json:"order_id" description:""`
- DataApiName string `json:"data_api_name" description:""`
- Alias string `json:"alias"`
- QueryType string `json:"query_type" description:""`
- ComboDesc string `json:"combo_desc" description:"套餐描述"` // comboType 改为combodesc
- Price float64 `json:"price" description:"订单价格"`
- Status string `json:"status" description:"订单状态"`
- AddOrderTime string `json:"add_order_time" description:"下单时间"`
- StatusCode int `json:"status_code"`
- Count int `json:"count" description:"订单购买数量"`
- ComboType int `json:"combo_type" description:"套餐类型0免费,1按次 2按天"` // type 改为combotype
- BuyAccount string `json:"buy_account"`
- PayType int `json:"pay_type"`
- MerchantName string `json:"merchant_name"`
- ExpireMinute int64 `json:"expire_minute"`
- }
- type ManagementGetMerchantOrderListReply struct {
- Total int `json:"total" description:""`
- PageSize int `json:"page_size" description:""`
- PageNumber int `json:"page_number" description:""`
- MerchantOrderItemList []MerchantOrderItem `json:"merchant_order_item_list"`
- }
- type ManagementSetMerchantOrderPriceReq struct {
- OrderId int64 `json:"order_id" description:""`
- Price float64 `json:"price" description:""`
- }
- type ManagementSetMerchantOrderPriceReply struct {
- }
- type MangementGetApiOrderInfoReq struct {
- OrderId int64 `json:"order_id" description:""`
- }
- type MangementGetApiOrderInfoReply struct {
- OrderInfo TGdDataApiOrder `json:"info"`
- }
|