| 1234567891011121314151617181920212223242526272829303132 |
- using System;
- using System.Collections.Generic;
- using Newtonsoft.Json;
- namespace YZXYH.Repository.Models
- {
- [Serializable]
- public partial class ViewUserAttendMeetInfo
- {
- public string Id { get; set; }
- public string AlumnusNo { get; set; }
- public string AMNo { get; set; }
- public string Suggest { get; set; }
- public string IsAudit { get; set; }
- public string IsLocked { get; set; }
- public string IsCost { get; set; }
- public string IsBranch { get; set; }
- public Nullable<System.DateTime> CostTime { get; set; }
- public string IsVip { get; set; }
- public string Remark { get; set; }
- public Nullable<System.DateTime> TimeCreated { get; set; }
- public Nullable<System.DateTime> TimeModify { get; set; }
- public string Name { get; set; }
- public string Mobile { get; set; }
- public string GraduationYear { get; set; }
- public string AMName { get; set; }
- public string AMYear { get; set; }
- public string AMDate { get; set; }
- public string Stauts { get; set; }
- public Nullable<System.DateTime> TimeEnd { get; set; }
- }
- }
|