123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107 |
- package apis
- type ProviderPlatform struct {
- Id int64 `json:"provider_id" description:"三方平台id"`
- PlatformName string `json:"platform_name" description:"平台名称"`
- Contact string `json:"contact" description:"联系方式"`
- Email string `json:"email" description:"邮件"`
- PlatformCode string `json:"platform_code" description:"平台代号"`
- Cost string `json:"cost" description:"花销" orm:"-"`
- CreateTime string `json:"create_time" description:""`
- UpdateTime string `json:"update_time" description:""`
- }
- func (o *ProviderPlatform) TableName() string {
- return "t_gd_provider"
- }
- type ManagementAddProviderPlatformReq struct {
- PlatformName string `json:"platform_name" description:"平台名称"`
- Contact string `json:"contact" description:"联系方式"`
- Email string `json:"email" description:"邮件"`
- PlatformCode string `json:"platform_code" description:"平台代号"`
- }
- type ManagementAddProviderPlatformReply struct {
- ProviderId int64 `json:"provider_id" description:""`
- }
- type ManagementDelProviderPlatformReq struct {
- ProviderId int64 `json:"provider_id" description:"三方平台id"`
- }
- type ManagementDelProviderPlatformReply struct {
- }
- type ManagementUpdateProviderPlatformReq struct {
- ProviderId int64 `json:"provider_id" description:"三方平台id"`
- PlatformName string `json:"platform_name" description:"平台名称"`
- Contact string `json:"contact" description:"联系方式"`
- Email string `json:"email" description:"邮件"`
- PlatformCode string `json:"platform_code" description:"平台代号"`
- }
- type ManagementUpdateProviderPlatformReply struct {
- }
- type ManagementGetProviderPlatformListReq struct {
- PageSize int `json:"page_size" description:"page大小"`
- PageNumber int `json:"page_number" description:""`
- Search string `json:"search"`
- IsAll bool `json:"is_all"`
- ProviderApiId int64 `json:"provider_api_id"`
- }
- type ManagementGetProviderPlatformListReply struct {
- Total int64 `json:"total" description:""`
- PageSize int `json:"page_size" description:"page大小"`
- PageNumber int `json:"page_number" description:""`
- ProviderPlatforms []ProviderPlatform `json:"provider_platforms"`
- }
- type ManagementGetNameReq struct {
- MerchantId int64 `json:"merchant_id"`
- ApiId int64 `json:"api_id"`
- ProviderApiId int64 `json:"provider_api_id"`
- H5ServiceId int64 `json:"h5_service_id"`
- H5ApiId int64 `json:"h5_api_id"`
- }
- type ManagementGetNameReply struct {
- MerchantName string `json:"merchant_name"`
- ApiName string `json:"api_name"`
- ProviderName string `json:"provider_name"`
- ProviderApiName string `json:"provider_api_name"`
- H5ServiceName string `json:"h5_service_name"`
- H5ApiName string `json:"h5_api_name"`
- ProviderId int64 `json:"provider_id"`
- }
- type ManagementGetSecretReq struct {
- AppKey string `json:"app_key"`
- }
- type ManagementGetSecretReply struct {
- AppSecret string `json:"app_secret"`
- }
- type ProviderBatchRequestReq struct {
- ApiId int `json:"api_id"`
- ApiName string `json:"api_name"`
- ThirdPartyHost string `json:"third_party_host"`
- ThirdPartyRouter string `json:"third_party_router"`
- Param []string `json:"param"`
- PlatformCode string `json:"platform_code"`
- }
- type ProviderBatchRequest struct {
- Param string `json:"param"`
- Response string `json:"response"`
- }
- type ProviderBatchRequestReply struct {
- List []ProviderBatchRequest
- }
- type ManagementDelProviderOldCountReq struct {
- Date string `json:"date"`
- }
- type ManagementDelProviderOldCountReply struct {
- }
|