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

50 lines
1.2 KiB
C#

using System;
using SqlSugar;
using System.ComponentModel;
using Myshipping.Core.Entity;
namespace Myshipping.Application.Entity
{
/// <summary>
/// 订舱货物状态
/// </summary>
[SugarTable("booking_goods_status")]
[Description("订舱货物状态")]
public class BookingGoodsStatus : DBEntityTenant
{
/// <summary>
/// 业务id
/// </summary>
public long? bookingId { get; set; }
/// <summary>
/// 货物状态配置ID 雪花id
/// </summary>
public long? ConfigId { get; set; }
/// <summary>
/// 完成时间
/// </summary>
public DateTime? FinishTime { get; set; }
/// <summary>
/// 完成人
/// </summary>
public string FinishUser { get; set; }
/// <summary>
/// 完成人ID
/// </summary>
public long? FinishUserId { get; set; }
/// <summary>
/// 是否公开
/// </summary>
public bool IsPublic { get; set; }
/// <summary>
/// 附加数据
/// </summary>
public string ExtData { get; set; }
/// <summary>
/// 备注
/// </summary>
public string Remark { get; set; }
}
}