| 1234567891011121314151617181920212223242526272829303132 |
- using System;
- using System.Collections.Generic;
- using Newtonsoft.Json;
- namespace YZXYH.Repository.Models
- {
- [Serializable]
- public partial class ViewUserCreateActivity
- {
- public string Id { 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 IsLocked { get; set; }
- public string Cost { get; set; }
- public Nullable<System.DateTime> TimeStart { get; set; }
- public 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 Name { get; set; }
- public string HobbyGroupName { get; set; }
- public string GraduationYear { get; set; }
- }
- }
|