using DS.Module.Core.Data;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DS.WMS.Core.Op.Entity
{
///
/// 订舱标签关联表
///
[SqlSugar.SugarTable("op_sea_booking_label_allocation", "订舱标签关联表")]
public class BookingLabelAllocation : BaseModel
{
///
/// 标签主键
///
[SqlSugar.SugarColumn(ColumnDescription = "标签主键", IsNullable = false)]
public long LabelId { get; set; }
///
/// 业务主键
///
[SqlSugar.SugarColumn(ColumnDescription = "业务主键", IsNullable = false)]
public long BusinessId { get; set; }
}
}