1234567891011121314151617181920212223242526272829303132333435363738394041 |
- using System;
- using System.Collections.Generic;
- namespace MySystem.MpMainModels2
- {
- public partial class SystemSet
- {
- 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 string StartAdPhoto { get; set; }
- public int UploadAutoZoomQuality { get; set; }
- public ulong UploadOss { get; set; }
- public string Logo { get; set; }
- public string WebStatCode { get; set; }
- public string Phone { get; set; }
- public string Address { get; set; }
- public string RightInfo { get; set; }
- public string UploadWaterPath { get; set; }
- public string UploadWaterPosition { get; set; }
- public ulong UploadAutoWater { get; set; }
- public int UploadAutoZoomHeight { get; set; }
- public int UploadAutoZoomWidth { get; set; }
- public ulong UploadAutoZoom { get; set; }
- public int UploadMaxSize { get; set; }
- public string UploadExt { get; set; }
- public string IndexDescription { get; set; }
- public string IndexKeyword { get; set; }
- public string WebName { get; set; }
- public string WebUrl { get; set; }
- }
- }
|