| 1234567891011121314151617181920 |
- using System;
- using System.Collections.Generic;
- using Newtonsoft.Json;
- namespace YZXYH.Repository.Models
- {
- [Serializable]
- public partial class AlumniChapterInfo
- {
- public string Id { get; set; }
- public string AlumniChapterName { get; set; }
- public string Description { get; set; }
- public string SortNo { get; set; }
- public string IsLocked { get; set; }
- public Nullable<System.DateTime> TimeCreated { get; set; }
- public Nullable<System.DateTime> TimeModify { get; set; }
- public string CreateUserNo { get; set; }
- public string Remark { get; set; }
- }
- }
|