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 TimeCreated { get; set; } public Nullable TimeModify { get; set; } public string CreateUserNo { get; set; } public string Remark { get; set; } } }