12345678910111213141516171819202122232425262728293031323334353637383940 |
- using System;
- using System.Collections.Generic;
- namespace MySystem.Models
- {
- public partial class PageUpdateInfo
- {
- public int Id { get; set; }
- public int Sort { get; set; }
- public int QueryCount { get; set; }
- public int Status { get; set; }
- public int Version { get; set; }
- public DateTime? CreateDate { get; set; }
- public DateTime? UpdateDate { get; set; }
- public string CreateMan { get; set; }
- public string UpdateMan { get; set; }
- public string SeoTitle { get; set; }
- public string SeoKeyword { get; set; }
- public string SeoDescription { get; set; }
- public ulong MustUpdate { get; set; }
- public string GotoPages { get; set; }
- public string RightAction2 { get; set; }
- public string RightAction1 { get; set; }
- public string LeftAction2 { get; set; }
- public string LeftAction1 { get; set; }
- public string RightBtn2 { get; set; }
- public string RightBtn1 { get; set; }
- public string LeftBtn2 { get; set; }
- public string LeftBtn1 { get; set; }
- public ulong IsSkid { get; set; }
- public ulong IsScrollBar { get; set; }
- public string Title { get; set; }
- public ulong ShowTitle { get; set; }
- public string StatusBarStyle { get; set; }
- public string TextColor { get; set; }
- public string BgColor { get; set; }
- public string ModulePath { get; set; }
- public int ModuleVersion { get; set; }
- }
- }
|