123456789101112131415161718 |
- package models
- type CreateMerchantRechargeProjectRequest struct {
- ProjectName string `json:"project_name"` // 项目名称
- MerchantOpenID string `json:"merchant_open_id"` // Open id
- ProjectQuantity int `json:"project_quantity"` //产品数量
- }
- type DelMerchantRechargeProjectRequest struct {
- Id int64 `json:"id"`
- MerchantOpenId string `json:"merchant_open_id"`
- }
- type MerchantRechargeProjectListRequest struct {
- OpenId string `json:"open_id"`
- PageSize int `json:"page_size"`
- PageIndex int `json:"page_index"`
- }
|