Quanxue.Zhanghao.Daochu/LearningOfficer.OA.Common/Dtos/User/StudentRequest.cs

59 lines
1.5 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace LearningOfficer.OA.Common.Dtos.User
{
public class StudentRequest
{
/// <summary>
/// 班级id
/// </summary>
public long ClassesId { get; set; }
/// <summary>
/// 用户名称
/// </summary>
public string UserName { get; set; }
}
public class StudentRequest_V2
{
/// <summary>
/// 学生id添加不传
/// </summary>
public long? Id { get; set; }
/// <summary>
/// 班级id
/// </summary>
public long ClassesId { get; set; }
/// <summary>
/// 用户名称
/// </summary>
public string UserName { get; set; }
/// <summary>
/// 家长信息
/// </summary>
public List<StudentParentRequest>? studentParentRequests { get; set; }
/// <summary>
/// 备注
/// </summary>
public string Remark { get; set; }
}
public class StudentParentRequest
{
/// <summary>
/// 家长名称
/// </summary>
public string ParentName { get; set; }
/// <summary>
/// 字典表-关系
/// </summary>
public long ParentRelation { get; set; }
/// <summary>
/// 电话
/// </summary>
public string ParentPhone { get; set; }
}
}