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.

38 lines
716 B
C#

4 years ago
using System;
using System.Collections.Generic;
using System.Text;
namespace AccessStudy.Core
{
4 years ago
/// <summary>
/// 学生
/// </summary>
4 years ago
public class Student
{
4 years ago
/// <summary>
/// 编号
/// </summary>
4 years ago
public int Id { get; set; }
4 years ago
/// <summary>
/// 姓名
/// </summary>
4 years ago
public string Name { get; set; }
4 years ago
/// <summary>
/// 年龄
/// </summary>
4 years ago
public int Age { get; set; }
4 years ago
/// <summary>
/// 地址
/// </summary>
public string Address { get; set; }
/// <summary>
/// 学校
/// </summary>
public string School { get; set; }
4 years ago
}
}