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/TaskSIFeedBackContaInfo.cs

59 lines
1.3 KiB
C#

using SqlSugar;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Myshipping.Application.Entity
{
/// <summary>
/// 任务装船通知回执详情表
/// </summary>
[SugarTable("task_si_feedback_conta")]
[Description("任务装船通知回执集装箱明细")]
public class TaskSIFeedBackContaInfo: TaskManageDbEntity
{
/// <summary>
/// 父主键
/// </summary>
public string P_PKID { get; set; }
/// <summary>
/// 集装箱号
/// </summary>
public string CONTA_NO { get; set; }
/// <summary>
/// 铅封号
/// </summary>
public string SEAL_NO { get; set; }
/// <summary>
/// 件数
/// </summary>
public int PKGS { get; set; }
/// <summary>
/// 重量
/// </summary>
public decimal? KGS { get; set; }
/// <summary>
/// 尺寸
/// </summary>
public decimal? CBM { get; set; }
/// <summary>
/// 箱型代码
/// </summary>
public string CONTA_TYPE { get; set; }
/// <summary>
/// 箱型
/// </summary>
public string CONTA_TYPE_NAME { get; set; }
}
}