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.

45 lines
1.4 KiB
C#

using DS.Module.Core.Data;
using SqlSugar;
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", "订舱状态")]
public class BookingStatus : BaseModel<long>
{
/// <summary>
/// 业务id
/// </summary>
[SqlSugar.SugarColumn(ColumnDescription = "业务id", IsNullable = false)]
public long? BusinessId { get; set; }
/// <summary>
/// 状态代码
/// </summary>
[SqlSugar.SugarColumn(ColumnDescription = "状态代码", IsNullable = true, Length = 100)]
public string StatusCode { get; set; }
/// <summary>
/// 状态名称
/// </summary>
[SqlSugar.SugarColumn(ColumnDescription = "状态名称", IsNullable = true, Length = 100)]
public string StatusName { get; set; }
/// <summary>
/// 状态时间
/// </summary>
[SqlSugar.SugarColumn(ColumnDescription = "状态时间", IsNullable = true)]
public DateTime? StatusTime { get; set; }
/// <summary>
/// 状态分组
/// </summary>
[SqlSugar.SugarColumn(ColumnDescription = "状态分组", IsNullable = true, Length = 100)]
public string StatusGroup { get; set; }
}
}