You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
namespace Myshipping.Application.Service.ExpressDelivery.Dto
|
|
|
|
|
{
|
|
|
|
|
public class ExpressDeliveryAddressDto
|
|
|
|
|
{
|
|
|
|
|
public long? Id { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 公司名称
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string Company { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 联系人姓名
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string People { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 省份id
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string ProvinceId { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 省份名称
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string Province { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 城市名称
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string City { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 详细地址
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string Address { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 联系电话
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string Tel { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|