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.
56 lines
1.4 KiB
C#
56 lines
1.4 KiB
C#
using Myshipping.Core.Entity;
|
|
using NPOI.OpenXmlFormats.Wordprocessing;
|
|
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("booking_delivery_record_ctn")]
|
|
[Description("订舱递送记录表箱信息")]
|
|
public class BookingDeliveryRecordCtn : DBEntityTenant
|
|
{
|
|
/// <summary>
|
|
/// 主记录ID
|
|
/// </summary>
|
|
public long RECORD_ID { get; set; }
|
|
|
|
/// <summary>
|
|
/// 集装箱箱型
|
|
/// </summary>
|
|
public string CTN_CODE { get; set; }
|
|
|
|
/// <summary>
|
|
/// 对应船公司箱型
|
|
/// </summary>
|
|
public string CARRIER_CTN_CODE { get; set; }
|
|
|
|
/// <summary>
|
|
/// 箱量
|
|
/// </summary>
|
|
public int CTN_NUM { get; set; }
|
|
|
|
/// <summary>
|
|
/// 箱内货物重量
|
|
/// </summary>
|
|
public int CTN_SUFFER_WEIGHT { get; set; }
|
|
|
|
/// <summary>
|
|
/// 箱计量单位
|
|
/// </summary>
|
|
public string STUFFING_MEASUREMENT_TYPE { get; set; }
|
|
|
|
/// <summary>
|
|
/// 重量或者体积的计量单位
|
|
/// </summary>
|
|
public string STUFFING_MEASUREMENT_UNIT { get; set; }
|
|
}
|
|
}
|