步步为盈
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

39 lines
1.0 KiB

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; }
}
}