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("CodePortLoad")] [Description("起运港")] public class CodePortLoad : CommonDbEntity { /// /// 代码 /// public string Code { get; set; } /// /// 英文名称 /// public string EnName { get; set; } /// /// 中文名称 /// public string CnName { get; set; } /// /// 描述 /// public string Description { get; set; } /// /// EDI代码 /// public string EdiCode { get; set; } /// /// 备注 /// public string Remark { get; set; } } [SugarTable("MappingPortLoad")] [Description("起运港映射")] public class MappingPortLoad : 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; } } }