using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Myshipping.Application
{
///
/// 打印文件类型枚举
///
public enum PrintFileTypeEnum
{
///
/// pdf
///
[Description("pdf")]
PDF = 1,
///
/// xlsx
///
[Description("xlsx")]
XLSX = 2,
///
/// docx
///
[Description("docx")]
DOCX = 3,
///
/// xls
///
[Description("xls")]
XLS = 4,
///
/// doc
///
[Description("doc")]
DOC = 5
}
}