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/BookingTrace.cs

23 lines
560 B
C#

using System;
using SqlSugar;
using System.ComponentModel;
using Myshipping.Core.Entity;
namespace Myshipping.Application.Entity
{
/// <summary>
/// 订舱运踪映射表
/// </summary>
[SugarTable("booking_trace")]
[Description("订舱运踪映射表")]
public class BookingTrace : PrimaryKeyEntity
{
/// <summary>
/// 订舱id
/// </summary>
public long? BookingId { get; set; }
/// <summary>
/// 运踪id
/// </summary>
public string TraeId { get; set; }
}
}