heyuntao
2023-05-04 fbd6a11a99051f425640bf352842f4a0ecaa7a4d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
using System;
using System.Collections.Generic;
using System.Text;
using YouZanSDKStandard.Api.Response;
 
namespace YouZanSDKStandard.Api.Request
{
    public class YouZanReturnGoodsAgreeRequest : IRequest<YouZanReturnGoodsAgreeResponse>
    {
        public string GetApiName()
        {
            return "youzan.trade.returngoods.agree";
        }
 
        public string GetApiVersion()
        {
            return "3.0.1";
        }
 
        public IDictionary<string, object> GetParameters()
        {
            Dictionary<string, object> dic = new Dictionary<string, object>();
            dic.Add("version", version);
            dic.Add("refund_id", refund_id);
            dic.Add("name", name);
            dic.Add("mobile", mobile);
            dic.Add("address", address);
            return dic;
        }
        /// <summary>
        /// 退款版本号
        /// </summary>
        public long version { get; set; }
        /// <summary>
        /// 维权ID(售后单编号)
        /// </summary>
        public string refund_id { get; set; }
 
        /// <summary>
        /// 收货人
        /// </summary>
        public string name { get; set; }
 
        /// <summary>
        /// 收货手机号
        /// </summary>
        public string mobile { get; set; }
 
        /// <summary>
        /// 退货地址
        /// </summary>
        public string address { get; set; }
 
 
 
        public string ResponseJsonPrefix(string strRet)
        {
            return strRet;
        }
 
        public void Validate()
        {
 
        }
    }
}