You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
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
{
/// <summary>
/// 订舱递送记录表船期记录
/// </summary>
[SugarTable("booking_delivery_record_ship_schedule")]
[Description("订舱递送记录表船期记录")]
public class BookingDeliveryRecordShipSchedule : DBEntityTenant
{
/// <summary>
/// 主记录ID
/// </summary>
public long RECORD_ID { get ; set ; }
/// <summary>
/// 船期金额
/// </summary>
public Nullable < decimal > SHIP_RATE_TOTAL_AMOUNT { get ; set ; }
/// <summary>
/// 船期币别
/// </summary>
public string SHIP_RATE_TOTAL_CURRENCY { get ; set ; }
/// <summary>
/// 船期PID
/// </summary>
public Nullable < long > SHIP_RATE_PID { get ; set ; }
/// <summary>
/// 船期MD5
/// </summary>
public string SHIP_RATE_MD5 { get ; set ; }
/// <summary>
/// 价格ID( SPOT专用) 对应单个船期
/// </summary>
public string PRICE_ID { get ; set ; }
/// <summary>
/// 船期JSON
/// </summary>
public string SHIP_JSON { get ; set ; }
}
}