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/PrintFileTypeEnum.cs

42 lines
842 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 PrintFileTypeEnum
{
/// <summary>
/// pdf
/// </summary>
[Description("pdf")]
PDF = 1,
/// <summary>
/// xlsx
/// </summary>
[Description("xlsx")]
XLSX = 2,
/// <summary>
/// docx
/// </summary>
[Description("docx")]
DOCX = 3,
/// <summary>
/// xls
/// </summary>
[Description("xls")]
XLS = 4,
/// <summary>
/// doc
/// </summary>
[Description("doc")]
DOC = 5
}
}