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
{
///
/// 任务BC集装箱
///
[SugarTable("task_bc_ctn_info")]
[Description("任务BC集装箱")]
public class TaskBCCTNInfo : TaskManageDbEntity
{
///
/// 派车任务主键
///
public string P_ID { get; set; }
///
/// 箱型代码
///
[Description("箱型代码")]
public string CTNCODE { get; set; }
///
/// 箱型
///
[Description("箱型")]
public string CTNALL { get; set; }
///
/// 箱量
///
[Description("箱量")]
public int? CTNNUM { get; set; }
///
/// 件数
///
[Description("件数")]
public Nullable PKGS { get; set; }
///
/// 毛重
///
[Description("毛重")]
public Nullable KGS { get; set; }
///
/// 尺码
///
[Description("尺码")]
public Nullable CBM { get; set; }
///
/// 皮重
///
[Description("皮重")]
public Nullable TAREWEIGHT { get; set; }
///
/// 危品票标示
///
[Description("危品票标示")]
public string IODGT { get; set; }
///
/// 特殊装载需求
///
[Description("特殊装载需求")]
public string SPECIAL_LOADING_REQUIRE { get; set; }
///
/// 提箱场站
///
[Description("提箱场站")]
public string TAKE_CTN_YARD { get; set; }
///
/// 提箱时间
///
[Description("提箱时间")]
public Nullable TAKE_CTN_TIME { get; set; }
///
/// 还箱场站
///
[Description("还箱场站")]
public string RETURN_CTN_YARD { get; set; }
}
}