using Myshipping.Core;
using Myshipping.Core.Entity;
using SqlSugar;
using System.ComponentModel;
namespace Myshipping.Application.Entity
{
///
///
///
[SugarTable("booking_label_allocation")]
[Description("订舱标签关联表")]
[Tenant(CommonConst.MasterDb)]
public class BookingLabelAllocation : PrimaryKeyEntity
{
///
/// 标签主键
///
public long LabelId { get; set; }
///
/// 业务主键
///
public long BusinessId { get; set; }
///
/// 租户id
///
public long TenantId { get; set; }
}
}