|
|
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
|
|
|
{
|
|
|
/// <summary>
|
|
|
/// 预订舱记录表船期表信息
|
|
|
/// </summary>
|
|
|
[SqlSugar.SugarTable("op_sea_space_booking_order_shipschedule", "预订舱记录表船期表信息")]
|
|
|
public class SpaceBookingOrderShipSchedule : BaseModel<long>
|
|
|
{
|
|
|
/// <summary>
|
|
|
/// 主记录ID
|
|
|
/// </summary>
|
|
|
[SqlSugar.SugarColumn(ColumnDescription = "主记录ID", IsNullable = true)]
|
|
|
public long RecordId { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
/// 船期金额
|
|
|
/// </summary>
|
|
|
[SqlSugar.SugarColumn(ColumnDescription = "船期金额", Length = 19, DecimalDigits = 2, IsNullable = true)]
|
|
|
public Nullable<decimal> ShipRateTotalAmount { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
/// 船期币别
|
|
|
/// </summary>
|
|
|
[SqlSugar.SugarColumn(ColumnDescription = "船期币别", Length = 10, IsNullable = true)]
|
|
|
public string ShipRateTotalCurrency { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
/// 船期PID
|
|
|
/// </summary>
|
|
|
[SqlSugar.SugarColumn(ColumnDescription = "船期PID", IsNullable = true)]
|
|
|
public Nullable<long> ShipRatePid { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
/// 船期MD5
|
|
|
/// </summary>
|
|
|
[SqlSugar.SugarColumn(ColumnDescription = "船期MD5", Length = 64, IsNullable = true)]
|
|
|
public string ShipRateMD5 { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
/// 价格ID(SPOT专用)对应单个船期
|
|
|
/// </summary>
|
|
|
[SqlSugar.SugarColumn(ColumnDescription = "价格ID(SPOT专用)对应单个船期", Length = 50, IsNullable = true)]
|
|
|
public string PriceId { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
/// 船期JSON
|
|
|
/// </summary>
|
|
|
[SqlSugar.SugarColumn(ColumnDataType = "text", ColumnDescription = "船期JSON", IsNullable = true)]
|
|
|
public string ShipJson { get; set; }
|
|
|
}
|
|
|
}
|