派纳发送邮件功能
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
539 B

6 months ago
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using UFSoft.UBF.Business;
  5. namespace CustNoticeTypeEnum
  6. {
  7. /// <summary>
  8. /// 枚举值: 客开通知枚举
  9. ///
  10. /// </summary>
  11. //枚举可以考虑加基类,目前不改也没影响。
  12. public enum CustNoticeTypeEnumData
  13. {
  14. /// <summary>
  15. /// 采购订单(苏州)
  16. /// </summary>
  17. PO_SZ = 0,
  18. /// <summary>
  19. /// 采购订单(研发订单)深圳
  20. /// </summary>
  21. PO_YF = 1,
  22. /// <summary>
  23. /// 空值(-1)
  24. /// </summary>
  25. Empty = -1
  26. }
  27. }