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.
41 lines
1.3 KiB
C#
41 lines
1.3 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_demand_ctn", "舱位需求预报记录箱信息")]
|
|
public class BookingSlotDemandCtn : BaseModel<long>
|
|
{
|
|
/// <summary>
|
|
/// 舱位需求预报记录ID
|
|
/// </summary>
|
|
[SqlSugar.SugarColumn(ColumnDescription = "舱位需求预报记录ID", IsNullable = false)]
|
|
public long DemandId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 箱型代码
|
|
/// </summary>
|
|
[SqlSugar.SugarColumn(ColumnDescription = "箱型代码", Length = 10, IsNullable = true)]
|
|
public string CtnCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 箱型名称
|
|
/// </summary>
|
|
[SqlSugar.SugarColumn(ColumnDescription = "箱型名称", Length = 20, IsNullable = true)]
|
|
public string CtnAll { get; set; }
|
|
|
|
/// <summary>
|
|
/// 箱量
|
|
/// </summary>
|
|
[SqlSugar.SugarColumn(ColumnDescription = "箱量", IsNullable = true, DefaultValue = "0")]
|
|
public int CtnNum { get; set; }
|
|
}
|
|
}
|