using System;
using System.Collections.Generic;
using System.Text;

namespace BBWY.Client.Models.APIModel
{
    public class GetWareLSAcceptOrderResponse
    {
        /// <summary>
        /// 客户名称
        /// </summary>
        public string CustomerName { get; set; }
        /// <summary>
        /// 提货地址
        /// </summary>
        public string AcceptAdress { get; set; }
        /// <summary>
        /// 客户联系人
        /// </summary>
        public string CustomerUserName { get; set; }
        /// <summary>
        /// 客户电话
        /// </summary>
        public string CustomerPhoneNumber { get; set; }
        /// <summary>
        /// 揽收任务号
        /// </summary>
        public string LSTaskNumber { get; set; }
        /// <summary>
        /// 始发TC
        /// </summary>
        public string StartTC { get; set; }

        /// <summary>
        /// JD运输联系人
        /// </summary>
        public string JDTransportUserName { get; set; }
    }
}