1234567891011121314151617181920212223242526272829303132 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace Bowin.Web.Controls.Mvc
- {
- public class SystemClockOptions : BaseControlOptions
- {
- public SystemClockOptions()
- : base()
- {
- if (string.IsNullOrEmpty(ID))
- ID = string.Format(Guid.NewGuid().ToString().Replace("-", ""));
- }
- /// <summary>
- /// 时钟是否跳动
- /// </summary>
- public bool? IsJump { get; set; }
- }
- public enum TimeFormatEnum
- {
-
- }
- public enum JumpTypeEnum
- {
- 顺序,
- 倒序
- }
- }
|