using System; using System.Collections.Generic; using Newtonsoft.Json; namespace YZXYH.Repository.Models { [Serializable] public partial class ViewContributeAttendInfo { public string ContributeNo { get; set; } public string ContributeName { get; set; } public int ContributeAmount { get; set; } public string ContributeUse { get; set; } public string ContributeContent { get; set; } public string ContributeRemark { get; set; } 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; } } }