using DS.Module.Core.Data; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DS.WMS.Core.Op.Entity { /// /// 舱位管理用途表 /// [SqlSugar.SugarTable("op_sea_booking_slot_useto", "舱位管理用途表")] public class BookingSlotUseTo : BaseModel { /// /// 舱位主键 /// [SqlSugar.SugarColumn(ColumnDescription = "舱位主键", IsNullable = false)] public long SlotId { get; set; } /// /// 用途代码 /// [SqlSugar.SugarColumn(ColumnDescription = "用途代码", Length = 20, IsNullable = true)] public string UseTo { get; set; } /// /// 用途名称 /// [SqlSugar.SugarColumn(ColumnDescription = "用途名称", Length = 50, IsNullable = true)] public string UseToName { get; set; } /// /// 用途值 /// [SqlSugar.SugarColumn(ColumnDescription = "用途值", Length = 100, IsNullable = true)] public string UseToVal { get; set; } /// /// 用途显示值 /// [SqlSugar.SugarColumn(ColumnDescription = "用图值显示值", Length = 100, IsNullable = true)] public string UseToValShow { get; set; } } }