using System; using SqlSugar; namespace F9.DataEntity.Entity { /// /// /// [SugarTable("LoadCon")] public partial class LoadCon { public LoadCon() { } /// /// Desc: /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey = true)] public string Id { get; set; } /// /// Desc: /// Default: /// Nullable:True /// public string MblId { get; set; } /// /// Desc: /// Default: /// Nullable:True /// public string AppOwnerId { get; set; } /// /// Desc: /// Default: /// Nullable:True /// public string AppCodeId { get; set; } /// /// Desc: /// Default: /// Nullable:True /// public string AppReturnId { get; set; } /// /// Desc: /// Default: /// Nullable:True /// public string TcId { get; set; } /// /// Desc: /// Default: /// Nullable:True /// public string SizeType { get; set; } /// /// Desc: /// Default: /// Nullable:True /// public string ConNo { get; set; } /// /// Desc: /// Default: /// Nullable:True /// public string SealNo { get; set; } /// /// Desc: /// Default: /// Nullable:True /// public string SealNoNew { get; set; } /// /// Desc: /// Default: /// Nullable:True /// public string LclId { get; set; } /// /// Desc: /// Default: /// Nullable:True /// public string Status { get; set; } /// /// Desc: /// Default: /// Nullable:True /// public int? Ctns { get; set; } /// /// Desc: /// Default: /// Nullable:True /// public string CtnsUnit { get; set; } /// /// Desc: /// Default: /// Nullable:True /// public decimal? Weight { get; set; } /// /// Desc: /// Default: /// Nullable:True /// public decimal? Meas { get; set; } /// /// Desc: /// Default: /// Nullable:True /// public string VGMWay { get; set; } /// /// Desc: /// Default: /// Nullable:True /// public decimal? VGMWeight { get; set; } /// /// Desc: /// Default: /// Nullable:True /// public string TruckNo { get; set; } /// /// Desc: /// Default: /// Nullable:True /// public string Remark { get; set; } /// /// Desc: /// Default: /// Nullable:True /// public string Cy { get; set; } /// /// Desc: /// Default: /// Nullable:True /// public string Driver { get; set; } /// /// Desc: /// Default: /// Nullable:True /// public string DriverTel { get; set; } /// /// Desc: /// Default: /// Nullable:True /// public DateTime? InDockDate { get; set; } /// /// Desc: /// Default: /// Nullable:True /// public string Blno { get; set; } /// /// Desc: /// Default: /// Nullable:True /// public string WagonNo { get; set; } } }