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.0 KiB
C#

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DS.WMS.Core.Op.Dtos
{
/// <summary>
/// 舱位状态
/// </summary>
public enum BookingSlotStatusEnum
{
/// <summary>
/// 全部舱位
/// </summary>
[Description("全部舱位")]
ALLSLOT,
/// <summary>
/// 现舱
/// </summary>
[Description("现舱")]
INSTOCK,
/// <summary>
/// 已使用
/// </summary>
[Description("已使用")]
USED,
/// <summary>
/// 已退舱
/// </summary>
[Description("已退舱")]
CUSTOMERBACK,
/// <summary>
/// 已退舱
/// </summary>
[Description("全部订舱")]
ALLBOOKING,
/// <summary>
/// 船公司退舱
/// </summary>
[Description("船公司退舱")]
CARRIERCANCEL,
}
}