|
|
@ -1,12 +1,40 @@
|
|
|
|
using System;
|
|
|
|
using DS.Module.Core.Data;
|
|
|
|
|
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.Linq;
|
|
|
|
using System.Linq;
|
|
|
|
using System.Text;
|
|
|
|
using System.Text;
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
|
|
namespace DS.WMS.Core.Op.Entity.BookingLabel
|
|
|
|
namespace DS.WMS.Core.Op.Entity
|
|
|
|
{
|
|
|
|
{
|
|
|
|
internal class BookingLabel
|
|
|
|
/// <summary>
|
|
|
|
|
|
|
|
/// 订舱标签表
|
|
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
|
|
[SqlSugar.SugarTable("op_sea_booking_label", "订舱标签表")]
|
|
|
|
|
|
|
|
public class BookingLabel : BaseModelV2<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; }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|