using Myshipping.Core.Entity; using SqlSugar; using System.ComponentModel; namespace Myshipping.Application.Entity { /// /// /// [SugarTable("booking_label")] [Description("订舱标签表")] public class BookingLabel : DBEntityTenant { /// /// 标签名称 /// public string Name { get; set; } /// /// 标签使用范围 1-舱位管理台账 /// public int Scope { get; set; } /// /// 颜色 /// public string Color { get; set; } /// /// 正则匹配 /// public string REGEX_PATTERN_TXT { get; set; } } }