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.
54 lines
1.0 KiB
C#
54 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 Myshipping.Application
|
|
{
|
|
/// <summary>
|
|
/// 收发通模板类型
|
|
/// </summary>
|
|
public enum BookingTemplateType
|
|
{
|
|
[Description("发货人")]
|
|
Shipper = 10,
|
|
|
|
[Description("收货人")]
|
|
Consignee = 20,
|
|
|
|
[Description("通知人")]
|
|
Notifypart = 30,
|
|
|
|
[Description("第二通知人")]
|
|
Notifypart2 = 40,
|
|
}
|
|
|
|
|
|
public enum BookingPrintTemplateType
|
|
{
|
|
[Description("FastReport")]
|
|
FastReport = 10,
|
|
|
|
[Description("Excel模板")]
|
|
ExcelTemplate = 20,
|
|
|
|
}
|
|
|
|
/// <summary>
|
|
/// 订舱补料类型
|
|
/// </summary>
|
|
public enum BookingDocSupplementType
|
|
{
|
|
[Description("报关补料")]
|
|
Customs = 10,
|
|
|
|
[Description("截单补料")]
|
|
CutOffOrder = 20,
|
|
|
|
[Description("其他补料")]
|
|
Other = 100,
|
|
}
|
|
}
|