using DS.Module.Core.Data; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DS.WMS.Core.Op.Entity { /// /// 货运状态详情 /// [SqlSugar.SugarTable("op_booking_status_log_detail", "货运状态详情")] public class BookingStatusLogDetail : BaseModel { /// /// 主单id /// [SqlSugar.SugarColumn(ColumnDescription = "主单id", IsNullable = false)] public long PId { get; set; } /// /// 状态 /// [SqlSugar.SugarColumn(ColumnDescription = "状态", IsNullable = true, Length = 100)] public string Status { get; set; } /// /// 状态时间 /// [SqlSugar.SugarColumn(ColumnDescription = "状态时间", IsNullable = true)] public DateTime? OpTime { get; set; } /// /// 箱号 /// [SqlSugar.SugarColumn(ColumnDescription = "箱号", IsNullable = true, Length = 100)] public string CNTRNO { get; set; } } }