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.
BookingHeChuan/Myshipping.Application/Entity/BookingStatusLogDetail.cs

32 lines
792 B
C#

2 years ago
using System;
using SqlSugar;
using System.ComponentModel;
using Myshipping.Core.Entity;
namespace Myshipping.Application.Entity
{
/// <summary>
/// 货运状态详情
/// </summary>
[SugarTable("booking_status_log_detail")]
[Description("货运状态详情")]
public class BookingStatusLogDetail : PrimaryKeyEntity
{
/// <summary>
/// 主单id
/// </summary>
1 year ago
public long PId { get; set; }
2 years ago
/// <summary>
/// 状态
/// </summary>
public string Status { get; set; }
/// <summary>
/// 箱号
/// </summary>
public string CNTRNO { get; set; }
2 years ago
2 years ago
/// <summary>
/// 状态时间
/// </summary>
public DateTime? OPTime { get; set; }
}
}