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