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#
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 BookingSlotUseToEnum
|
|
{
|
|
/// <summary>
|
|
/// 指定货
|
|
/// </summary>
|
|
[Description("指定货")]
|
|
ASSIGN_FORWARDER,
|
|
/// <summary>
|
|
/// 专属客户
|
|
/// </summary>
|
|
[Description("专属客户")]
|
|
GUEST_ONLY,
|
|
/// <summary>
|
|
/// 专属销售
|
|
/// </summary>
|
|
[Description("专属销售")]
|
|
SALEER_ONLY,
|
|
/// <summary>
|
|
/// 专属公司
|
|
/// </summary>
|
|
[Description("专属公司")]
|
|
COMPANY_ONLY,
|
|
/// <summary>
|
|
/// 品名大类
|
|
/// </summary>
|
|
[Description("品名大类")]
|
|
GOODS,
|
|
/// <summary>
|
|
/// HSCODE
|
|
/// </summary>
|
|
[Description("HSCODE")]
|
|
HSCODE
|
|
}
|
|
}
|