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
}
}