using DS.Module.Core;
using DS.Module.Core.Data;
using SqlSugar;
namespace DS.WMS.Core.TaskPlat.Entity
{
///
/// 任务VGM集装箱
///
[SugarTable("task_vgm_ctn_info", "任务VGM集装箱")]
public class TaskVgmCtnInfo : BaseModel
{
///
/// VGM任务主键
///
[SugarColumn(ColumnDescription = "VGM任务主键", IsNullable = false ) ]
public long PId { get; set; }
///
/// 箱号
///
[SugarColumn(ColumnDescription = "箱号", IsNullable = true , Length = 30 ) ]
public string? Cntrno { get; set; }
///
/// VGM重量
///
[SugarColumn(ColumnDescription = "VGM重量", IsNullable = true , Length = 19 ) ]
public decimal? VgmWeight { get; set; }
///
/// VGM重量单位
///
[SugarColumn(ColumnDescription = "VGM重量单位", IsNullable = true , Length = 10 ) ]
public string? VgmWeightUnit { get; set; }
///
/// VGM称重方式
///
[SugarColumn(ColumnDescription = "VGM称重方式", IsNullable = true , Length = 30 ) ]
public string? VgmMethod { get; set; }
}
}