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.

47 lines
1.3 KiB
C#

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