You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
1.0 KiB
C#
43 lines
1.0 KiB
C#
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
|
|
{
|
|
/// <summary>
|
|
/// 货运跟踪
|
|
/// </summary>
|
|
[SqlSugar.SugarTable("op_booking_status_log", "货运跟踪")]
|
|
public class BookingStatusLog : BaseModel<long>
|
|
{
|
|
|
|
/// <summary>
|
|
/// 业务id
|
|
/// </summary>
|
|
public long? BusinessId { get; set; }
|
|
/// <summary>
|
|
/// 状态
|
|
/// </summary>
|
|
public string Status { get; set; }
|
|
/// <summary>
|
|
/// 状态时间
|
|
/// </summary>
|
|
public DateTime? OpTime { get; set; }
|
|
/// <summary>
|
|
/// 类别
|
|
/// </summary>
|
|
public string Group { get; set; }
|
|
/// <summary>
|
|
/// 状态分类
|
|
/// </summary>
|
|
public string Type { get; set; }
|
|
/// <summary>
|
|
/// 提单号
|
|
/// </summary>
|
|
public string MBLNO { get; set; }
|
|
}
|
|
}
|