tanglong 752e8450bc ss
2025-06-06 15:15:42 +08:00

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; }
}
}