optimize
parent
bd55f78c6a
commit
9d3c09b3f2
@ -0,0 +1,111 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using SqlSugar;
|
||||
using Myshipping.Core.Entity;
|
||||
|
||||
/*
|
||||
* @author : whm
|
||||
* @date : 2024-1-5
|
||||
* @desc : 舱位分配集装箱表
|
||||
*/
|
||||
namespace Myshipping.Application
|
||||
{
|
||||
/// <summary>
|
||||
/// 舱位分配集装箱表
|
||||
/// </summary>
|
||||
[SugarTable("booking_slot_allocation_ctn", TableDescription = "舱位分配集装箱表")]
|
||||
public class BookingSlotAllocationCtn : DBEntityTenant
|
||||
{
|
||||
/// <summary>
|
||||
/// 舱位分配主键
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "SLOT_ALLOC_ID")]
|
||||
public long SLOT_ALLOC_ID{ get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 箱型代码
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "CTNCODE")]
|
||||
public string CTNCODE{ get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 箱型名称
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "CTNALL")]
|
||||
public string CTNALL{ get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 箱量
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "CTNNUM")]
|
||||
public int CTNNUM{ get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 箱号
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "CNTRNO")]
|
||||
public string CNTRNO{ get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 箱封号
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "SEALNO")]
|
||||
public string SEALNO{ get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 件数
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "PKGS")]
|
||||
public int PKGS{ get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 包装
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "KINDPKGS")]
|
||||
public string KINDPKGS{ get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 毛重
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "KGS")]
|
||||
public decimal KGS{ get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 尺码
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "CBM")]
|
||||
public decimal CBM{ get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 皮重
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "TAREWEIGHT")]
|
||||
public decimal TAREWEIGHT{ get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 箱状态
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "CTNSTATUS")]
|
||||
public string CTNSTATUS{ get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 称重方式
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "WEIGHTYPE")]
|
||||
public string WEIGHTYPE{ get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 称重重量
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "WEIGHKGS")]
|
||||
public decimal WEIGHKGS{ get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 称重联系人
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "WEIGHATTN")]
|
||||
public string WEIGHATTN{ get; set; }
|
||||
|
||||
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue