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", "货运跟踪")]
public class BookingStatusLog : BaseModel
{
///
/// 业务id
///
public long? BusinessId { get; set; }
///
/// 状态
///
public string Status { get; set; }
///
/// 状态时间
///
public DateTime? OpTime { get; set; }
///
/// 类别
///
public string Group { get; set; }
///
/// 状态分类
///
public string Type { get; set; }
///
/// 提单号
///
public string MBLNO { get; set; }
}
}