using System; using System.Collections.Generic; using System.Text; namespace Study.DelegateSeries.Core { /// /// 老师类 /// public class Teacher { public int Id { get; set; } public string Name { get; set; } public static string ShowTypeName() { return typeof(Teacher).FullName; } public string ShowTeacherName() { return this.Name; } } }