using System; using SqlSugar; using System.ComponentModel; using Myshipping.Core.Entity; namespace Myshipping.Application.Entity { /// /// 货运跟踪 /// [SugarTable("booking_status_log")] [Description("货运跟踪")] public class BookingStatusLog : DBEntityTenant { /// /// 业务id /// public long? BookingId { get; set; } /// /// 状态 /// public string Status { get; set; } /// /// 状态时间 /// public DateTime? OpTime { get; set; } /// /// 类别 /// public string Gategory { get; set; } /// /// 状态分类 /// public string Type { get; set; } /// /// 提单号 /// public string MBLNO { get; set; } } }