using DS.Module.Core.Data;
using SqlSugar;
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", "货运跟踪")]
public class BookingStatusLog : BaseModel
{
///
/// 业务id
///
[SugarColumn(ColumnDescription = "业务id")]
public long? BusinessId { get; set; }
///
/// 状态
///
[SugarColumn(ColumnDescription = "状态", Length = 100, IsNullable = true)]
public string Status { get; set; }
///
/// 状态时间
///
[SugarColumn(ColumnDescription = "状态时间", IsNullable = true)]
public DateTime? OpTime { get; set; }
///
/// 类别
///
[SugarColumn(ColumnDescription = "类别", Length = 100, IsNullable = true)]
public string Group { get; set; }
///
/// 状态分类
///
[SugarColumn(ColumnDescription = "状态分类", Length = 100, IsNullable = true)]
public string Type { get; set; }
///
/// 提单号
///
[SugarColumn(ColumnDescription = "提单号", Length = 100, IsNullable = true)]
public string MBLNO { get; set; }
}
}