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_delivery_record_ship_schedule")]
[Description("订舱递送记录表船期记录")]
public class BookingDeliveryRecordShipSchedule : DBEntityTenant
{
///
/// 主记录ID
///
public long RECORD_ID { get; set; }
///
/// 船期金额
///
public Nullable SHIP_RATE_TOTAL_AMOUNT { get; set; }
///
/// 船期币别
///
public string SHIP_RATE_TOTAL_CURRENCY { get; set; }
///
/// 船期PID
///
public Nullable SHIP_RATE_PID { get; set; }
///
/// 船期MD5
///
public string SHIP_RATE_MD5 { get; set; }
///
/// 价格ID(SPOT专用)对应单个船期
///
public string PRICE_ID { get; set; }
///
/// 船期JSON
///
public string SHIP_JSON { get; set; }
}
}