TradeCellFile.cs 450 B

123456789101112131415161718192021222324
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace BizCom.Enum
  7. {
  8. public enum TradeCellFile
  9. {
  10. /// <summary>
  11. /// 源文件
  12. /// </summary>
  13. ORI_FILE,
  14. /// <summary>
  15. /// 包裹图片
  16. /// </summary>
  17. PACK_FILE,
  18. /// <summary>
  19. /// 授权文件
  20. /// </summary>
  21. AUTH_FILE
  22. }
  23. }