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.
|
|
|
|
using System;
|
|
|
|
|
using SqlSugar;
|
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
using Myshipping.Core.Entity;
|
|
|
|
|
namespace Myshipping.Application.Entity
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 舱单主表
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarTable("BookingOrderSeaeEdiTemplate")]
|
|
|
|
|
[Description("舱单收发通模板")]
|
|
|
|
|
public class BookingOrderSeaeEdiTemplate : DBEntityTenant
|
|
|
|
|
{
|
|
|
|
|
/// <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; }
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|