12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- package apis
- type TGdH5ServiceMerchant struct {
- Id int64 `json:"merchant_h5_service_id"`
- MerchantId int64 `json:"merchant_id"`
- H5ServiceId int64 `json:"h5_service_id"`
- Count int `json:"count"`
- ThemeColor string `json:"theme_color"`
- StartTime int64 `json:"start_time"`
- EndTime int64 `json:"end_time"`
- State int `json:"state"`
- CreateTime string `json:"create_time"`
- UpdateTime string `json:"update_time"`
- ComboType int `json:"combo_type"`
- }
- type TGdH5ServiceOrder struct {
- Id int64 `json:"h5_service_order"`
- OrderNo string `json:"order_no"`
- MerchantId int64 `json:"merchant_id"`
- H5ServiceId int64 `json:"h5_service_id"`
- H5ServiceComboId int64 `json:"h5_service_combo_id"`
- Status int `json:"status"`
- ThemeColor string `json:"theme_color"`
- CreateTime string `json:"create_time"`
- GoodPrice float64 `json:"good_price"`
- }
- type ManagementAddMerchantH5ServiceReq struct {
- MerchantId int64 `json:"merchant_id"`
- H5ServiceId int64 `json:"h5_service_id"`
- ComboId int64 `json:"h5_combo_id"`
- ThemeColor string `json:"theme_color"`
- }
- type ManagementAddMerchantH5ServiceReply struct {
- MerchantH5ServiceId int64 `json:"merchant_h5_service_id"`
- }
- type ManagementGetMerchantH5ServiceReq struct {
- PageNumber int `json:"page_number"`
- IsAll bool `json:"is_all"`
- MerchantId int64 `json:"merchant_id"`
- }
- type MerchantH5ServiceItem struct {
- MerchantH5ServiceId int64 `json:"merchant_h5_service_id"`
- H5ServiceId int64 `json:"h5_service_id"`
- ComboType int `json:"combo_type" description:"套餐类型1 按总次数,2 按天"`
- TotalCount int `json:"total_count" description:""`
- RemainCount int `json:"remain_count" description:""`
- DayCount int `json:"day_count" description:""`
- DayRemainCount int `json:"day_remain_count" description:""`
- DayNumberCount int `json:"day_number_count" description:"天数上限"`
- DayNumberRemain int `json:"day_number_remain" description:"有效天数"`
- Status string `json:"status" description:""`
- UseTime string `json:"use_time" description:""`
- H5ServiceName string `json:"h5_service_name"`
- State string `json:"state"`
- }
- type ManagementGetMerchantH5ServiceReply struct {
- PageSize int `json:"page_size"`
- Total int `json:"total"`
- PageNumber int `json:"page_number"`
- MerchantH5ServiceList []MerchantH5ServiceItem `json:"merchant_h5_service_list"`
- }
- type ManagementGetMerchantH5ComboReq struct {
- MerchantH5ServiceId int64 `json:"merchant_h5_service_id"`
- }
- type ManagementGetMerchantH5ComboReply struct {
- DayCount int `json:"day_count" description:"日调用量上限"`
- Count int `json:"count" description:"总调用上限"`
- DayNumber int `json:"day_number" description:"剩余有效天数"`
- Type int `json:"type" description:"1 按总次数, 2按天"`
- }
- type ManagementSetMerchantH5ComboReq struct {
- MerchantH5ServiceId int64 `json:"merchant_h5_service_id"`
- DayCount int `json:"day_count" description:"日调用量上限"`
- Count int `json:"count" description:"总调用上限"`
- DayNumber int `json:"day_number" description:"剩余有效天数"`
- }
- type ManagementSetMerchantH5ComboReply struct {
- }
- /*
- type MangementGetH5OrderInfoReq struct {
- OrderId int64 `json:"order_id" description:""`
- }
- type MangementGetH5OrderInfoReply struct {
- OrderInfo TGdH5ServiceOrder `json:"order_info"`
- }
- */
|