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.
55 lines
1.4 KiB
C#
55 lines
1.4 KiB
C#
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.Entity
|
|
{
|
|
/// <summary>
|
|
/// 订舱递送记录表定时订舱运行表
|
|
/// </summary>
|
|
[SugarTable("booking_delivery_record_job_run")]
|
|
[Description("订舱递送记录表定时订舱运行表")]
|
|
public class BookingDeliveryRecordJobRun : DBEntityTenant
|
|
{
|
|
/// <summary>
|
|
/// 主记录ID
|
|
/// </summary>
|
|
public long RECORD_ID { get; set; }
|
|
|
|
/// <summary>
|
|
/// 是否定时任务 1-是 0-否
|
|
/// </summary>
|
|
public Nullable<DateTime> JOB_TIME { get; set; }
|
|
|
|
/// <summary>
|
|
/// 发送时间
|
|
/// </summary>
|
|
public Nullable<DateTime> SEND_TIME { get; set; }
|
|
|
|
/// <summary>
|
|
/// 定时方案ID
|
|
/// </summary>
|
|
public string TIMER_PLAN_ID { get; set; }
|
|
|
|
/// <summary>
|
|
/// 定时方案名称
|
|
/// </summary>
|
|
public string TIMER_PLAN_NAME { get; set; }
|
|
|
|
/// <summary>
|
|
/// 是否已推送报告 1-已推送 0-未推送
|
|
/// </summary>
|
|
public bool IS_SEND_REPORT { get; set; }
|
|
|
|
/// <summary>
|
|
/// 推送报告时间
|
|
/// </summary>
|
|
public Nullable<DateTime> REPORT_TIME { get; set; }
|
|
}
|
|
}
|