79 lines
2.1 KiB
C#
79 lines
2.1 KiB
C#
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Admin.NET.Core
|
|
{
|
|
|
|
/// <summary>
|
|
/// 家庭关联学生表
|
|
/// </summary>
|
|
[SugarTable("bus_framilymap_students", "家庭关联学生表")]
|
|
public class BusFramilyMapStudents : DEntitySortTenant
|
|
{
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "家庭Id")]
|
|
public long FramilyId { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 生涯系统学生Id(远端)
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "学生Id")]
|
|
public Guid StudentId { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 学生学号
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "学生学号",IsNullable =true)]
|
|
public string BarCode { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 学生姓名
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "学生姓名", IsNullable = true)]
|
|
public string StudentName { get; set; }
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "学校名称", IsNullable = true)]
|
|
public string SchoolName { get; set; }
|
|
/// <summary>
|
|
/// 学生年级
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "学生年级", IsNullable = true)]
|
|
public string GradeName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 学生班级
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "学生班级", IsNullable = true)]
|
|
public string ClassName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 性别
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "性别", IsNullable = true)]
|
|
public string Gender { get; set; }
|
|
|
|
/// <summary>
|
|
/// 是否为默认
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "是否为默认", IsNullable = true)]
|
|
public bool IsDefault { get; set; }
|
|
|
|
|
|
}
|
|
}
|