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.
This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
using Myshipping.Core.Entity ;
using SqlSugar ;
using System ;
using System.Collections.Generic ;
using System.ComponentModel ;
using System.Linq ;
using System.Text ;
using System.Threading.Tasks ;
namespace Myshipping.Application
{
/// <summary>
/// 舱位差异记录表相关人
/// </summary>
[SugarTable("booking_slot_change_record_notify", TableDescription = "舱位差异记录表相关人")]
public class BookingSlotChangeRecordNotify : DBEntityTenant
{
/// <summary>
/// 父主键
/// </summary>
[SugarColumn(ColumnName = "P_ID")]
[Description("父主键")]
public long P_ID { get ; set ; }
/// <summary>
/// 被通知人ID
/// </summary>
[SugarColumn(ColumnName = "NotifyUserId")]
[Description("被通知人ID")]
public Nullable < long > NotifyUserId { get ; set ; }
/// <summary>
/// 被通知人名称
/// </summary>
[SugarColumn(ColumnName = "NotifyUserName")]
[Description("被通知人名称")]
public string NotifyUserName { get ; set ; }
/// <summary>
/// 被通知人身份 SALE-销售, OPERATOR-操作OP
/// </summary>
[SugarColumn(ColumnName = "NotifyUserRole")]
[Description("被通知人身份")]
public string NotifyUserRole { get ; set ; }
/// <summary>
/// 被通知人邮箱
/// </summary>
[SugarColumn(ColumnName = "NotifyEmail")]
[Description("被通知人邮箱")]
public string NotifyEmail { get ; set ; }
/// <summary>
/// 被通知人手机号
/// </summary>
[SugarColumn(ColumnName = "NotifyMobile")]
[Description("被通知人手机号")]
public string NotifyMobile { get ; set ; }
}
}