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