zhaojs
2023-09-27 74098f1401afe40f961d1d167bb18dd0a71c4d59
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
using System;
using System.Collections.Generic;
using System.Text;
 
namespace AlibabaSDK.Domain
{
    public class FenXiaoOrderCreateResponseDomain
    {
        public bool success { get; set; }
 
        public string errorCode { get; set; }
 
        public string errorMessage { get; set; }
 
        public long totalSuccessAmount { get; set; }
 
        public string orderId { get; set; }
 
        public long postFee { get; set; }
    }
 
    public class FXOrderAddressParam
    {
        /// <summary>
        /// 收货人姓名
        /// </summary>
        public string fullName { get; set; }
        /// <summary>
        ///手机
        /// </summary>
        public string mobile { get; set; }
        /// <summary>
        /// 电话
        /// </summary>
        public string phone { get; set; }
        /// <summary>
        /// 市文本
        /// </summary>
        public string cityText { get; set; }
        /// <summary>
        /// 省份文本
        /// </summary>
        public string provinceText { get; set; }
        /// <summary>
        /// 区文本
        /// </summary>
        public string areaText { get; set; }
        /// <summary>
        /// 镇文本
        /// </summary>
        public string townText { get; set; }
        /// <summary>
        /// 街道地址
        /// </summary>
        public string address { get; set; }
    }
 
    public class FXOrderCargoParamList
    {
        /// <summary>
        /// 商品对应的offer id
        /// </summary>
        public long offerId { get; set; }
        /// <summary>
        /// 商品规格id
        /// </summary>
        public string specId { get; set; }
        /// <summary>
        /// 商品数量(计算金额用)
        /// </summary>
        public double quantity { get; set; }
 
        /// <summary>
        /// 渠道店铺编码
        /// </summary>
        public string outShopCode { get; set; }
        /// <summary>
        /// 渠道编码
        /// </summary>
        public string channel { get; set; }
        /// <summary>
        /// 渠道商品编码
        /// </summary>
        public string outItemCode { get; set; }
 
    }
 
}