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/BookingLabelAllocation.cs

30 lines
722 B
C#

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