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.

41 lines
1.2 KiB
C#

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