using DS.Module.Core.Data; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DS.WMS.Core.Op.Entity { /// /// 预订舱记录表船期表信息 /// [SqlSugar.SugarTable("op_sea_space_booking_order_shipschedule", "预订舱记录表船期表信息")] public class SpaceBookingOrderShipSchedule : BaseModel { /// /// 主记录ID /// [SqlSugar.SugarColumn(ColumnDescription = "主记录ID", IsNullable = true)] public long RecordId { get; set; } /// /// 船期金额 /// [SqlSugar.SugarColumn(ColumnDescription = "船期金额", Length = 19, DecimalDigits = 2, IsNullable = true)] public Nullable ShipRateTotalAmount { get; set; } /// /// 船期币别 /// [SqlSugar.SugarColumn(ColumnDescription = "船期币别", Length = 10, IsNullable = true)] public string ShipRateTotalCurrency { get; set; } /// /// 船期PID /// [SqlSugar.SugarColumn(ColumnDescription = "船期PID", IsNullable = true)] public Nullable ShipRatePid { get; set; } /// /// 船期MD5 /// [SqlSugar.SugarColumn(ColumnDescription = "船期MD5", Length = 64, IsNullable = true)] public string ShipRateMD5 { get; set; } /// /// 价格ID(SPOT专用)对应单个船期 /// [SqlSugar.SugarColumn(ColumnDescription = "价格ID(SPOT专用)对应单个船期", Length = 50, IsNullable = true)] public string PriceId { get; set; } /// /// 船期JSON /// [SqlSugar.SugarColumn(ColumnDataType = "text", ColumnDescription = "船期JSON", IsNullable = true)] public string ShipJson { get; set; } } }