using System;
using System.Collections.Generic;

namespace MySystem.Models.Main
{
    public partial class ActivityInfo
    {
        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 Remark { get; set; }
        public string ActContent { get; set; }
        public string ActBanner { get; set; }
        public string ActReferUrl { get; set; }
        public string EnrolEndTime { get; set; }
        public string EnrolStartTime { get; set; }
        public DateTime? EnrolEndDate { get; set; }
        public DateTime? EnrolStartDate { get; set; }
        public DateTime? EffectEndDate { get; set; }
        public DateTime? EffectStartDate { get; set; }
        public int IsTop { get; set; }
        public string LimitTopBuddy { get; set; }
        public string BrandId { get; set; }
        public string ActName { get; set; }
        public int ActType { get; set; }
        public string ActCode { get; set; }
    }
}