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.
80 lines
2.0 KiB
C#
80 lines
2.0 KiB
C#
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")]
|
|
[Description("任务预甩货通知")]
|
|
public class TaskRollingNominationInfo : TaskManageDbEntity
|
|
{
|
|
/// <summary>
|
|
/// 任务主键
|
|
/// </summary>
|
|
public string TASK_ID { get; set; }
|
|
|
|
/// <summary>
|
|
/// 计划类型 Rolling-预甩货,Transfer-中转预甩
|
|
/// </summary>
|
|
public string PLAN_TYPE { get; set; }
|
|
|
|
/// <summary>
|
|
/// 批次号
|
|
/// </summary>
|
|
public string BATCH_NO { get; set;}
|
|
|
|
/// <summary>
|
|
/// 船公司代号
|
|
/// </summary>
|
|
public string CARRIERID { get; set; }
|
|
|
|
/// <summary>
|
|
/// 船公司
|
|
/// </summary>
|
|
public string CARRIER { get; set; }
|
|
|
|
/// <summary>
|
|
/// 最后确认期限日期
|
|
/// </summary>
|
|
public Nullable<DateTime> CONFIRM_DEAD_LINE { get; set; }
|
|
|
|
/// <summary>
|
|
/// 解析生成日期
|
|
/// </summary>
|
|
public Nullable<DateTime> READ_CREATE_TIME { get; set; }
|
|
|
|
/// <summary>
|
|
/// 含有二甩声明备注
|
|
/// </summary>
|
|
public string ROLL_DOUBLE_REMARK { get; set; }
|
|
|
|
/// <summary>
|
|
/// 预甩计划详情
|
|
/// </summary>
|
|
public string PLAN_TXT { get; set; }
|
|
|
|
/// <summary>
|
|
/// 备注
|
|
/// </summary>
|
|
public string REMARK { get; set; }
|
|
|
|
/// <summary>
|
|
/// 任务批次明细合计
|
|
/// </summary>
|
|
public int TASK_BATCH_TOTAL { get; set; }
|
|
|
|
/// <summary>
|
|
/// 任务批次单票合计
|
|
/// </summary>
|
|
public int TASK_BATCH_PER_TOTAL { get; set; }
|
|
}
|
|
}
|