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.
42 lines
1.0 KiB
C#
42 lines
1.0 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Myshipping.Application.Service.BookingOrderSeaeEdi.Dto
|
|
{
|
|
public class BookingOrderSeaeEdiTemplateDto
|
|
{
|
|
public long Id { get; set; }
|
|
/// <summary>
|
|
/// 模板名称
|
|
/// </summary>
|
|
public string TemplateNAME { get; set; }
|
|
/// <summary>
|
|
/// 名称
|
|
/// </summary>
|
|
public string NAME { get; set; }
|
|
/// <summary>
|
|
/// 地址
|
|
/// </summary>
|
|
public string ADDR { get; set; }
|
|
/// <summary>
|
|
/// 国家code
|
|
/// </summary>
|
|
public string COUNTRY { get; set; }
|
|
/// <summary>
|
|
/// 国家
|
|
/// </summary>
|
|
public string COUNTRYName { get; set; }
|
|
/// <summary>
|
|
/// 发货人电话
|
|
/// </summary>
|
|
public string TEL { get; set; }
|
|
/// <summary>
|
|
/// 类型 1 收 2 发 3 通
|
|
/// </summary>
|
|
public string Type { get; set; }
|
|
}
|
|
}
|