| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- using System;
- using System.Collections.Generic;
- using Newtonsoft.Json;
- namespace YZXYH.Repository.Models
- {
- [Serializable]
- public partial class ViewUserAttendActivityInfo
- {
- public string Id { get; set; }
- public string AlumnusNo { get; set; }
- public string AcNo { get; set; }
- public string Suggest { get; set; }
- public string IsAudit { get; set; }
- public string IsCost { get; set; }
- public Nullable<System.DateTime> CostTime { get; set; }
- public string IsVip { get; set; }
- public string Remark { get; set; }
- public Nullable<System.DateTime> TimeAttend { get; set; }
- public Nullable<System.DateTime> TimeAttendMod { get; set; }
- public string Name { get; set; }
- public string AcName { get; set; }
- public string AcDate { get; set; }
- public string AcType { get; set; }
- public string Comments { get; set; }
- public string Stauts { get; set; }
- public string ContactUser { get; set; }
- public string Address { get; set; }
- public string MaxNum { get; set; }
- public string Cost { get; set; }
- public Nullable<System.DateTime> TimeStart { get; set; }
- public Nullable<System.DateTime> TimeEnd { get; set; }
- public Nullable<System.DateTime> TimeCreated { get; set; }
- public Nullable<System.DateTime> TimeModify { get; set; }
- public string CreatedUserNo { get; set; }
- public string HeadDisply { get; set; }
- public string SortNo { get; set; }
- public string CreatedUserName { get; set; }
- }
- }
|