using System;
using SqlSugar;
using System.ComponentModel;
using Myshipping.Core.Entity;
namespace Myshipping.Application.Entity
{
///
/// 订舱链接
///
[SugarTable("booking_order_url")]
[Description("订舱链接")]
public class BookingOrderUrl : DBEntityTenant
{
///
/// 订舱ID
///
public long? BookingId { get; set; }
///
/// 提箱小票链接
///
public string UrlTxxp { get; set; }
///
/// VGM链接
///
public string UrlVgm { get; set; }
///
/// VGM&SI链接
///
public string UrlVgmSi { get; set; }
}
}