You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
663 B
C#
34 lines
663 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace ClrDemoNet40
|
|
{
|
|
/// <summary>
|
|
/// 学校信息
|
|
/// </summary>
|
|
public class School
|
|
{
|
|
/// <summary>
|
|
/// 标识
|
|
/// </summary>
|
|
public int Id { get; set; }
|
|
|
|
/// <summary>
|
|
/// 学校名称
|
|
/// </summary>
|
|
public string SchoolName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 班级数量
|
|
/// </summary>
|
|
public int ClassNumber { get; set; }
|
|
|
|
/// <summary>
|
|
/// 学生数量
|
|
/// </summary>
|
|
public int StudentNumber { get; set; }
|
|
}
|
|
}
|