namespace Myshipping.Application.Service.ExpressDelivery.Dto
{
public class ExpressDeliveryAddressDto
{
public long? Id { get; set; }
///
/// 类型;1:收件人信息;2:寄件人信息
///
public int Type { get; set; }
///
/// 公司名称
///
public string Company { get; set; }
///
/// 联系人姓名
///
public string People { get; set; }
///
/// 省份id
///
public string ProvinceId { get; set; }
///
/// 省份名称
///
public string Province { get; set; }
///
/// 城市名称
///
public string City { get; set; }
///
/// 详细地址
///
public string Address { get; set; }
///
/// 联系电话
///
public string Tel { get; set; }
}
}