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.
39 lines
1.2 KiB
C#
39 lines
1.2 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_detail", "货运状态详情")]
|
|
public class BookingStatusLogDetail : BaseModel<long>
|
|
{
|
|
/// <summary>
|
|
/// 主单id
|
|
/// </summary>
|
|
[SqlSugar.SugarColumn(ColumnDescription = "主单id", IsNullable = false)]
|
|
public long PId { get; set; }
|
|
/// <summary>
|
|
/// 状态
|
|
/// </summary>
|
|
[SqlSugar.SugarColumn(ColumnDescription = "状态", IsNullable = true, Length = 100)]
|
|
public string Status { get; set; }
|
|
/// <summary>
|
|
/// 状态时间
|
|
/// </summary>
|
|
[SqlSugar.SugarColumn(ColumnDescription = "状态时间", IsNullable = true)]
|
|
public DateTime? OpTime { get; set; }
|
|
|
|
/// <summary>
|
|
/// 箱号
|
|
/// </summary>
|
|
[SqlSugar.SugarColumn(ColumnDescription = "箱号", IsNullable = true, Length = 100)]
|
|
public string CNTRNO { get; set; }
|
|
}
|
|
}
|