using System; using System.Collections.Generic; using Newtonsoft.Json; namespace YZXYH.Repository.Models { [Serializable] public partial class ViewContributeActivityInfo { public string ContributeActivityNo { get; set; } public string ActivityName { get; set; } public string ActivityCreate { get; set; } public string ActivityAlumChapterNo { get; set; } public Nullable TimeStart { get; set; } public Nullable TimeEnd { get; set; } public string ActivityContent { get; set; } public string Remark { get; set; } public Nullable TimeCreate { get; set; } public Nullable TimeLastMod { get; set; } public string UserIdCreate { get; set; } public string UserIdLastMod { get; set; } public string IsLocked { get; set; } public string Status { get; set; } public string AlumniChapterName { get; set; } } }