using DS.Module.Core;
using DS.Module.Core.Data;
using SqlSugar;
namespace DS.WMS.Core.TaskPlat.Entity
{
///
/// 重要任务提醒整船通知单号明细
///
[SugarTable("task_caution_notice_whole_ship_detail", "重要任务提醒整船通知单号明细")]
public class TaskCautionNoticeWholeShipDetail : BaseModelV2
{
///
/// 任务主键ID
///
[SugarColumn(ColumnDescription = "任务主键ID", IsNullable = false)]
public long TASK_ID { get; set; }
///
/// 任务提醒主键
///
[SugarColumn(ColumnDescription = "任务提醒主键", IsNullable = false)]
public long P_ID { get; set; }
///
/// 提单号
///
[SugarColumn(ColumnDescription = "提单号", IsNullable = true, Length = 64)]
public string? MBL_NO { get; set; }
///
/// 订舱ID
///
[SugarColumn(ColumnDescription = "订舱ID", IsNullable = true)]
public long? BOOKING_ID { get; set; }
///
/// 舱位ID
///
[SugarColumn(ColumnDescription = "舱位ID", IsNullable = true)]
public long? BOOKING_SLOT_ID { get; set; }
///
/// 通知人ID
///
[SugarColumn(ColumnDescription = "通知人ID", IsNullable = true)]
public long? NOTIFY_USER_ID { get; set; }
///
/// 被通知人名称
///
[SugarColumn(ColumnDescription = "被通知人名称", IsNullable = true, Length = 50)]
public string? NOTIFY_USER_NAME { get; set; }
///
/// 被通知方式
///
[SugarColumn(ColumnDescription = "被通知方式", IsNullable = true, Length = 50)]
public string? NOTIFY_METHOD { get; set; }
///
/// 被通知人手机
///
[SugarColumn(ColumnDescription = "被通知人手机", IsNullable = true, Length = 20)]
public string? NOTIFY_MOBILE { get; set; }
///
/// 被通知人邮箱
///
[SugarColumn(ColumnDescription = "被通知人邮箱", IsNullable = true, Length = 64)]
public string? NOTIFY_EMAIL { get; set; }
///
/// 状态
///
[SugarColumn(ColumnDescription = "状态", IsNullable = true, Length = 20)]
public string? STATUS { get; set; }
///
/// 状态名称
///
[SugarColumn(ColumnDescription = "状态名称", IsNullable = true, Length = 50)]
public string? STATUS_NAME { get; set; }
///
/// 重试次数
///
[SugarColumn(ColumnDescription = "重试次数", IsNullable = true)]
public int? RETRY_NUM { get; set; }
///
/// 批次号
///
[SugarColumn(ColumnDescription = "批次号", IsNullable = true, Length = 64)]
public string? BATCH_NO { get; set; }
}
}