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.
47 lines
1.4 KiB
C#
47 lines
1.4 KiB
C#
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
|
|
{
|
|
/// <summary>
|
|
/// 舱位管理用途表
|
|
/// </summary>
|
|
[SqlSugar.SugarTable("op_sea_booking_slot_useto", "舱位管理用途表")]
|
|
public class BookingSlotUseTo : BaseModel<long>
|
|
{
|
|
/// <summary>
|
|
/// 舱位主键
|
|
/// </summary>
|
|
[SqlSugar.SugarColumn(ColumnDescription = "舱位主键", IsNullable = false)]
|
|
public long SlotId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 用途代码
|
|
/// </summary>
|
|
[SqlSugar.SugarColumn(ColumnDescription = "用途代码", Length = 20, IsNullable = true)]
|
|
public string UseTo { get; set; }
|
|
|
|
/// <summary>
|
|
/// 用途名称
|
|
/// </summary>
|
|
[SqlSugar.SugarColumn(ColumnDescription = "用途名称", Length = 50, IsNullable = true)]
|
|
public string UseToName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 用途值
|
|
/// </summary>
|
|
[SqlSugar.SugarColumn(ColumnDescription = "用途值", Length = 100, IsNullable = true)]
|
|
public string UseToVal { get; set; }
|
|
|
|
/// <summary>
|
|
/// 用途显示值
|
|
/// </summary>
|
|
[SqlSugar.SugarColumn(ColumnDescription = "用图值显示值", Length = 100, IsNullable = true)]
|
|
public string UseToValShow { get; set; }
|
|
}
|
|
}
|