using SqlSugar; using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Myshipping.Core.Entity { [SugarTable("CodePort")] [Description("目的港")] public class CodePort : CommonDbEntity { /// /// 代码 /// public string Code { get; set; } /// /// 英文名称 /// public string EnName { get; set; } /// /// 中文名称 /// public string CnName { get; set; } /// /// 航线 /// public string ShippingRoute { get; set; } /// /// 国家 /// public string Country { get; set; } /// /// 国家代码 /// public string CountryCode { get; set; } /// /// 全名 /// public string FullName { get; set; } /// /// 描述 /// public string Description { get; set; } /// /// EDI代码 /// public string EdiCode { get; set; } /// /// 备注 /// public string Remark { get; set; } /// /// 航线名称,非数据库列 /// [SugarColumn(IsIgnore = true)] public dynamic LineName { get; set; } } [SugarTable("MappingPort")] [Description("起运港映射")] public class MappingPort : CommonDbEntity { /// /// 代码 /// public string Code { get; set; } /// /// 船司代码 /// public string CarrierCode { get; set; } /// /// 模块 /// public string Module { get; set; } /// /// 映射代码 /// public string MapCode { get; set; } /// /// 映射名称 /// public string MapName { get; set; } /// /// 备注 /// public string Remark { get; set; } } }