47 lines
1.0 KiB
C#
47 lines
1.0 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace YD_XinWei.Commons.Dto.Teacher
|
|
{
|
|
/// <summary>
|
|
/// 老师个人信息
|
|
/// </summary>
|
|
public class TeacherProfileDto
|
|
{
|
|
/// <summary>
|
|
///头像
|
|
/// </summary>
|
|
public string HeadImageUrl { get; set; }
|
|
|
|
/// <summary>
|
|
///姓名
|
|
/// </summary>
|
|
public string UserTrueName { get; set; }
|
|
|
|
/// <summary>
|
|
///出生日期
|
|
/// </summary>
|
|
public DateTime? BirthDate { get; set; }
|
|
|
|
/// <summary>
|
|
///性别
|
|
/// </summary>
|
|
public int? Gender { get; set; }
|
|
|
|
/// <summary>
|
|
/// 身高
|
|
/// </summary>
|
|
public float? Height { get; set; }
|
|
|
|
/// <summary>
|
|
/// 体重
|
|
/// </summary>
|
|
public float? Weight { get; set; }
|
|
}
|
|
}
|