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.
BookingHeChuan/Myshipping.Application/Enum/BookingEnums.cs

39 lines
731 B
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,
}
}