您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 

25 行
476 B

  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace BPA.SAAS.KitChenManageOrder.Core.Enum
  8. {
  9. public enum StatusEntity
  10. {
  11. /// <summary>
  12. /// 正常
  13. /// </summary>
  14. [Description("正常")]
  15. ENABLE = 0,
  16. /// <summary>
  17. /// 停用
  18. /// </summary>
  19. [Description("停用")]
  20. DISABLE = 1,
  21. }
  22. }