| 123456789101112131415161718192021222324252627282930313233343536 | package modelstype CreateMerchantCardProjectRequest struct {	MerchantOpenID   string `json:"merchant_open_id"`   	ProjectUnitPrice string `json:"project_unit_price"` 	ProjectUnit      string `json:"project_unit"`       	ProjectUrl       string `json:"project_url"`        	ProjectName      string `json:"project_name"`}type GetMerchantCardProjectRequest struct {	MerchantCardProjectId int64 `json:"merchant_card_project_id"` }type MerchantCardProjectListRequest struct {	OpenId    string `json:"open_id"`	PageSize  int    `json:"page_size"`	PageIndex int    `json:"page_index"`}type MerchantCardProjectListReply struct {	ID               int64  `json:"id"`	Filled           bool   `json:"filled"`	MerchantOpenID   string `json:"merchant_open_id"`   	ProjectUnitPrice string `json:"project_unit_price"` 	ProjectUnit      string `json:"project_unit"`       	ProjectUrl       string `json:"project_url"`        	ProjectName      string `json:"project_name"`}type UpdateMerchantCardProjectRequest struct {	ID               int64  `json:"id"`	ProjectUnitPrice string `json:"project_unit_price"` 	ProjectUnit      string `json:"project_unit"`       	ProjectUrl       string `json:"project_url"`        	ProjectName      string `json:"project_name"`}
 |