SystemClockOptions.cs 617 B

1234567891011121314151617181920212223242526272829303132
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace Bowin.Web.Controls.Mvc
  6. {
  7. public class SystemClockOptions : BaseControlOptions
  8. {
  9. public SystemClockOptions()
  10. : base()
  11. {
  12. if (string.IsNullOrEmpty(ID))
  13. ID = string.Format(Guid.NewGuid().ToString().Replace("-", ""));
  14. }
  15. /// <summary>
  16. /// 时钟是否跳动
  17. /// </summary>
  18. public bool? IsJump { get; set; }
  19. }
  20. public enum TimeFormatEnum
  21. {
  22. }
  23. public enum JumpTypeEnum
  24. {
  25. 顺序,
  26. 倒序
  27. }
  28. }