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.

50 lines
1.5 KiB
C#

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