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