zhaojs
2023-09-15 fc13938ff90213060532d99a600dea4a84456885
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
 
namespace YouZanSDKStandard.Api.Domain
{
    /// <summary>
    /// 领取
    /// </summary>
    [Serializable]
    public class TradeFetchOpenModel
    {
        /// <summary>
        /// 领取人(即:预约人)的姓名
        /// </summary>
        public string fetcher_name { get; set; }
        /// <summary>
        /// 领取人的手机号
        /// </summary>
        public string fetcher_mobile { get; set; }
        /// <summary>
        /// 预约的领取时间。新版到店自提的数据格式:<br> 1: 2016-04-18 17:00-17:15<br> 2: 尽快到店提货
        /// </summary>
        public string fetch_time { get; set; }
        /// <summary>
        /// 自提点id
        /// </summary>
        public int shop_id { get; set; }
        /// <summary>
        /// 自提点名称
        /// </summary>
        public string shop_name { get; set; }
        /// <summary>
        /// 自提点联系方式
        /// </summary>
        public string shop_mobile { get; set; }
        /// <summary>
        /// 自提点所在省份
        /// </summary>
        public string shop_state { get; set; }
        /// <summary>
        /// 自提点所在城市
        /// </summary>
        public string shop_city { get; set; }
        /// <summary>
        /// 自提点所在地区
        /// </summary>
        public string shop_district { get; set; }
        /// <summary>
        /// 自提点详细地址
        /// </summary>
        public string shop_address { get; set; }
    }
}