| 1234567891011121314151617181920212223242526272829303132 |
- 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<System.DateTime> TimeStart { get; set; }
- public Nullable<System.DateTime> TimeEnd { get; set; }
- public string ActivityContent { get; set; }
- public string Remark { get; set; }
- public Nullable<System.DateTime> TimeCreate { get; set; }
- public Nullable<System.DateTime> 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; }
- }
- }
|