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.
BookingHeChuan/Myshipping.Application/Entity/TaskManagePlat/TaskPODDischargeGateoutFull...

85 lines
2.1 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_pod_discharge_gateout_full_detail")]
[Description("任务目的港未提货未返箱明细")]
public class TaskPODDischargeGateoutFullDetailInfo : TaskManageDbEntity
{
/// <summary>
/// VGM任务主键
/// </summary>
public string P_ID { get; set; }
/// <summary>
/// 主单号
/// </summary>
public string MBL_NO { get; set; }
/// <summary>
/// 箱号
/// </summary>
public string CTN_NO { get; set; }
/// <summary>
/// 收货人
/// </summary>
public string CNEE { get; set; }
/// <summary>
/// 卸货日期
/// </summary>
public Nullable<DateTime> DISCHARGE_DATE { get; set; }
/// <summary>
/// 卸货港
/// </summary>
public string DISCHARGE_PORT { get; set; }
/// <summary>
/// 超期天数
/// </summary>
public Nullable<int> OVERDUE_DAYS { get; set; }
8 months ago
/// <summary>
/// 当前集装箱所在地
/// </summary>
public string CUR_CONTA_LOCATION { get; set; }
/// <summary>
/// 滞留费用
/// </summary>
public Nullable<decimal> DETENTION_FEE_TILL_DATE { get; set; }
/// <summary>
/// 费用币别
/// </summary>
public string CHARGE_CURRENCY { get; set; }
/// <summary>
/// 订舱ID
/// </summary>
public Nullable<long> BOOKING_ID { get; set; }
/// <summary>
/// 已发消息提醒 1-已发 0-未发
/// </summary>
public bool IS_NOTICE { get; set; }
/// <summary>
/// 消息提醒时间
/// </summary>
public Nullable<DateTime> SEND_NOTICE_DATE { get; set; }
}
}