123456789101112131415161718192021222324252627 |
- using System;
- using System.Collections.Generic;
- namespace MySystem.Models
- {
- public partial class ColFields
- {
- public int Id { get; set; }
- public int Sort { get; set; }
- public int QueryCount { get; set; }
- public int Status { get; set; }
- public DateTime? CreateDate { get; set; }
- public DateTime? UpdateDate { get; set; }
- public string SeoTitle { get; set; }
- public string SeoKeyword { get; set; }
- public string SeoDescription { get; set; }
- public ulong IsRequired { get; set; }
- public ulong IsQuery { get; set; }
- public ulong IsAdmin { get; set; }
- public string FieldSelectValues { get; set; }
- public string FieldCheck { get; set; }
- public string FieldName { get; set; }
- public int FieldType { get; set; }
- public int ColId { get; set; }
- public string FieldTag { get; set; }
- }
- }
|