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