SplitType.cs 434 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 SqlSugar
  7. {
  8. public enum SplitType
  9. {
  10. Day = 0,
  11. Week = 1,
  12. Month = 2,
  13. Month_6=1000,
  14. Season = 3,
  15. Year = 4,
  16. _Custom01 = 5,
  17. _Custom02 = 6,
  18. _Custom03 = 7,
  19. _Custom04 = 8,
  20. _Custom05 = 9,
  21. _Custom06 = 10,
  22. }
  23. }