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.
BookingHeChuan/Myshipping.Application/Entity/BookingDeliveryRecordShipSc...

55 lines
1.4 KiB
C#

5 months ago
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>
/// 价格IDSPOT专用对应单个船期
/// </summary>
public string PRICE_ID { get; set; }
/// <summary>
/// 船期JSON
/// </summary>
public string SHIP_JSON { get; set; }
}
}