using Myshipping.Core.Entity; using SqlSugar; using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Myshipping.Application.Entity { /// /// 船司场站对应关系 /// [SugarTable("booking_carrier_yard_relation")] [Description("船司场站对应关系")] public class BookingCarrierYardRelation : DBEntityTenant { /// /// 场站代码 /// [Description("场站代码")] public string YardCode { get; set; } /// /// 场站 /// [Description("场站")] public string Yard { get; set; } /// /// 船司代码 /// [Description("船司代码")] public string CarrierCode { get; set; } /// /// 船司 /// [Description("船司")] public string Carrier { get; set; } } }