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.
|
|
|
|
using System;
|
|
|
|
|
using SqlSugar;
|
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
using Myshipping.Core.Entity;
|
|
|
|
|
namespace Myshipping.Application.Entity
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 订舱状态
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarTable("booking_status")]
|
|
|
|
|
[Description("订舱状态")]
|
|
|
|
|
public class BookingStatus : PrimaryKeyEntity
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 订舱id
|
|
|
|
|
/// </summary>
|
|
|
|
|
public long? BookingId { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 状态代码
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string StaCode { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 状态名称
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string StaName { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 状态时间
|
|
|
|
|
/// </summary>
|
|
|
|
|
public DateTime? StaTime { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 状态分类
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string StaCate { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|