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.
111 lines
2.8 KiB
C#
111 lines
2.8 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using SqlSugar;
|
|
using Myshipping.Core.Entity;
|
|
|
|
/*
|
|
* @author : whm
|
|
* @date : 2024-1-2
|
|
* @desc : 舱位集装箱管理
|
|
*/
|
|
namespace Myshipping.Application
|
|
{
|
|
/// <summary>
|
|
/// 舱位集装箱管理
|
|
/// </summary>
|
|
[SugarTable("booking_slot_ctn", TableDescription = "舱位集装箱管理")]
|
|
public class BookingSlotCtn : DBEntityTenant
|
|
{
|
|
/// <summary>
|
|
/// 舱位主键
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "SLOT_ID")]
|
|
public long SLOT_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; }
|
|
|
|
|
|
}
|
|
} |