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.Application.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("task_rolling_nomination_dispatch")]
[Description("任务预甩货调度")]
public class TaskRollingNominationDispatchInfo : TaskManageDbEntity
{
/// <summary>
/// 任务主键
/// </summary>
public string TASK_ID { get ; set ; }
/// <summary>
/// 预甩货主键
/// </summary>
public string NOM_ID { get ; set ; }
/// <summary>
/// 预甩船主键
/// </summary>
public string NOM_SHIP_ID { get ; set ; }
/// <summary>
/// 预甩明细主键
/// </summary>
public string DETAIL_ID { get ; set ; }
/// <summary>
/// 批次ID
/// </summary>
public string BATCH_ID { get ; set ; }
/// <summary>
/// 是否用户人工确认 1-人工确认(用户在访问链接上做了反馈) 0-不是人工确认
/// </summary>
public bool IS_USER_MANUAL { get ; set ; }
/// <summary>
/// 是否已通知用户 1-已通知 0-未通知
/// </summary>
public bool IS_SEND { get ; set ; }
/// <summary>
/// 最后确认期限日期
/// </summary>
public Nullable < DateTime > CONFIRM_DEAD_LINE { get ; set ; }
/// <summary>
/// 状态 WAIT-待确认, COMPLETE-已完成, CANCEL-已取消,EXPIRE-失效
/// </summary>
public string STATUS { get ; set ; }
/// <summary>
/// 用户选择意见
/// </summary>
public string USER_OPINION { get ; set ; }
/// <summary>
/// 用户意见内容
/// </summary>
public string USER_OPINION_TXT { get ; set ; }
/// <summary>
/// 用户确认时间
/// </summary>
public Nullable < DateTime > CONFIRM_DATE { get ; set ; }
/// <summary>
/// 生成链接时间
/// </summary>
public Nullable < DateTime > CREATE_SHARE_LINK_DATE { get ; set ; }
/// <summary>
/// 生成链接访问KEY
/// </summary>
public string SHARE_LINK_KEY { get ; set ; }
}
}