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.
32 lines
793 B
C#
32 lines
793 B
C#
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>
|
|
public long? PId { get; set; }
|
|
/// <summary>
|
|
/// 状态
|
|
/// </summary>
|
|
public string Status { get; set; }
|
|
/// <summary>
|
|
/// 箱号
|
|
/// </summary>
|
|
public string CNTRNO { get; set; }
|
|
|
|
/// <summary>
|
|
/// 状态时间
|
|
/// </summary>
|
|
public DateTime? OPTime { get; set; }
|
|
}
|
|
} |