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
633 B
C#
34 lines
633 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace ClrDemoNet45
|
|
{
|
|
/// <summary>
|
|
/// 学生信息
|
|
/// </summary>
|
|
public class Student
|
|
{
|
|
/// <summary>
|
|
/// 标识
|
|
/// </summary>
|
|
public int Id { get; set; }
|
|
|
|
/// <summary>
|
|
/// 所属学校
|
|
/// </summary>
|
|
public int SchoolId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 姓名
|
|
/// </summary>
|
|
public string Name { get; set; }
|
|
|
|
/// <summary>
|
|
/// 年龄
|
|
/// </summary>
|
|
public int Age { get; set; }
|
|
}
|
|
}
|