using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Myshipping.Core.Service.CommonDB.Dto { /// /// 航线 /// public class CodeLaneDto { /// /// 主键 /// public string GID { get; set; } /// /// 航线代码 /// public string Code { get; set; } /// /// 航线类型 /// public string LaneType { get; set; } /// /// 航线英文名称 /// public string EnName { get; set; } /// /// 航线中文名称 /// public string CnName { get; set; } /// /// 描述 /// public string Description { get; set; } /// /// 排序 /// public int Sort { get; set; } } }