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

51 lines
1.1 KiB
C#

using Myshipping.Core.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.Entity
{
/// <summary>
/// 订舱箱VGM信息
/// </summary>
[SugarTable("booking_ctn_vgm")]
[Description("订舱箱VGM信息")]
public class BookingCtnVGM : DBEntityTenant
{
/// <summary>
/// 订舱ID
/// </summary>
public Nullable<long> BILLID { get; set; }
/// <summary>
/// 箱号
/// </summary>
public string CNTRNO { get; set; }
/// <summary>
/// VGM重量
/// </summary>
public Nullable<decimal> VGM_WEIGHT { get; set; }
/// <summary>
/// VGM重量单位
/// </summary>
public string VGM_WEIGHT_UNIT { get; set; }
/// <summary>
/// VGM称重方式
/// </summary>
public string VGM_METHOD { get; set; }
/// <summary>
/// 是否箱号已匹配
/// </summary>
public bool IS_MATCH { get; set; }
}
}