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.

31 lines
685 B

4 days ago
  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 NFine.Application
  8. {
  9. public enum DbLogType
  10. {
  11. [Description("其他")]
  12. Other = 0,
  13. [Description("登录")]
  14. Login = 1,
  15. [Description("退出")]
  16. Exit = 2,
  17. [Description("访问")]
  18. Visit = 3,
  19. [Description("新增")]
  20. Create = 4,
  21. [Description("删除")]
  22. Delete = 5,
  23. [Description("修改")]
  24. Update = 6,
  25. [Description("提交")]
  26. Submit = 7,
  27. [Description("异常")]
  28. Exception = 8,
  29. }
  30. }