52 lines
1.2 KiB
C#
52 lines
1.2 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using SqlSugar;
|
|
|
|
namespace LearningOfficer.OA.Core.Entities.OA.StudentInfo
|
|
{
|
|
/// <summary>
|
|
/// 学生家长信息记录表
|
|
///</summary>
|
|
[SugarTable("student_parent")]
|
|
public class StudentParent : BaseEntity
|
|
{
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
/// 备 注:学生id
|
|
/// 默认值:
|
|
///</summary>
|
|
[SugarColumn(ColumnName = "student_id" )]
|
|
public long StudentId { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 备 注:家长姓名
|
|
/// 默认值:
|
|
///</summary>
|
|
[SugarColumn(ColumnName = "parent_name" )]
|
|
public string ParentName { get; set; } = null!;
|
|
|
|
|
|
/// <summary>
|
|
/// 备 注:字典表-关系
|
|
/// 默认值:
|
|
///</summary>
|
|
[SugarColumn(ColumnName = "parent_relation" )]
|
|
public long ParentRelation { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 备 注:电话
|
|
/// 默认值:
|
|
///</summary>
|
|
[SugarColumn(ColumnName = "parent_phone" )]
|
|
public string ParentPhone { get; set; } = null!;
|
|
|
|
|
|
}
|
|
|
|
} |