using System;
using SqlSugar;
using System.ComponentModel;
using Myshipping.Core.Entity;
namespace Myshipping.Application.Entity
{
///
///
///
[SugarTable("booking_fee_record")]
[Description("订舱扣费记录信息")]
public class BookingFeeRecord : PrimaryKeyEntity
{
///
/// 单据ID
///
public long BillId { get; set; }
///
/// 提单号
///
public string MBLNO { get; set; }
///
/// 租户ID
///
public long TenantId { get; set; }
///
/// 费用类型
///
public string Type { get; set; }
///
/// 金额
///
public decimal? Amount { get; set; }
///
/// 备注
///
public string Remark { get; set; }
///
/// 创建时间
///
public DateTime CreatedTime { get; set; } = DateTime.Now;
}
}