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.

59 lines
2.0 KiB
C#

using DS.Module.Core.Data;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DS.WMS.Core.Op.Entity
{
/// <summary>
/// 预订舱定时订舱运行表
/// </summary>
[SqlSugar.SugarTable("op_sea_space_booking_order_job_run", "预订舱定时订舱运行表")]
public class SpaceBookingOrderBookingJobRun : BaseModel<long>
{
/// <summary>
/// 主记录ID
/// </summary>
[SqlSugar.SugarColumn(ColumnDescription = "主记录ID", IsNullable = true)]
public long RecordId { get; set; }
/// <summary>
/// 定时时间
/// </summary>
[SqlSugar.SugarColumn(ColumnDescription = "定时时间", IsNullable = true)]
public Nullable<DateTime> JobTime { get; set; }
/// <summary>
/// 发送时间
/// </summary>
[SqlSugar.SugarColumn(ColumnDescription = "发送时间", IsNullable = true)]
public Nullable<DateTime> SendTime { get; set; }
/// <summary>
/// 定时方案ID
/// </summary>
[SqlSugar.SugarColumn(ColumnDescription = "定时方案ID", Length = 20, IsNullable = true)]
public string TimerPlanId { get; set; }
/// <summary>
/// 定时方案名称
/// </summary>
[SqlSugar.SugarColumn(ColumnDescription = "定时方案名称", Length = 100, IsNullable = true)]
public string TimerPlanName { get; set; }
/// <summary>
/// 是否已推送报告 1-已推送 0-未推送
/// </summary>
[SqlSugar.SugarColumn(ColumnDescription = "是否已推送报告 1-已推送 0-未推送", IsNullable = true)]
public bool IsSendReport { get; set; }
/// <summary>
/// 推送报告时间
/// </summary>
[SqlSugar.SugarColumn(ColumnDescription = "推送报告时间", IsNullable = true)]
public Nullable<DateTime> ReportTime { get; set; }
}
}