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", "订舱标签表")]
public class BookingLabel : BaseModelV2
{
///
/// 标签名称
///
[SqlSugar.SugarColumn(ColumnDescription = "标签名称", IsNullable = true)]
public string Name { get; set; }
///
/// 标签使用范围 1-舱位管理台账
///
[SqlSugar.SugarColumn(ColumnDescription = "标签使用范围 1-舱位管理台账", IsNullable = true)]
public int Scope { get; set; }
///
/// 颜色
///
[SqlSugar.SugarColumn(ColumnDescription = "颜色",Length = 20, IsNullable = true)]
public string Color { get; set; }
///
/// 正则匹配
///
[SqlSugar.SugarColumn(ColumnDataType = "text", ColumnDescription = "正则匹配", IsNullable = true)]
public string RegexPatternTxt { get; set; }
}
}