16 lines
1.3 KiB
Go
16 lines
1.3 KiB
Go
package weipinshang_api
|
||
|
||
type CreateAfsApplyReq struct {
|
||
McOrderNo int `json:"mcOrderNo"` // 子订单号 是 int 下单时候返回子订单号 20190704124955600363
|
||
CustomerExpect int `json:"customerExpect"` // 售后类型 是 int [退货(10)、仅退款(40)] 10
|
||
QuestionDesc string `json:"questionDesc"` // 原因描述 否 String [产品问题描述,最多600字符] 看下面请求示例
|
||
QuestionPic string `json:"questionPic"` //问题描述图片 否 String [问题描述图片.最多2000字符] 支持多张图片,用逗号分隔(英文逗号)
|
||
CustomerContactName string `json:"customerContactName"` // 用户姓名 是 String [用户姓名] 张三
|
||
CustomerTel string `json:"customerTel"` // 用户电话 是 String [用户电话] 18533136240
|
||
CustomerMobilePhone string `json:"customerMobilePhone"` // 用户手机 是 String [用户手机] 18533136240
|
||
PickwareProvince string `json:"pickwareProvince"` //省份 是 String [省份] 湖南
|
||
PickwareCity string `json:"pickwareCity"` // 城市 是 String [城市] 长沙
|
||
PickwareCounty string `json:"pickwareCounty"` // 县区 是 String [县区] 芙蓉区
|
||
PickwareAddress string `json:"pickwareAddress"` //详细地址 是 String [县区] 塔南路59号2号楼2单元1301室
|
||
}
|