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
{
///
/// 班级id
///
public long ClassesId { get; set; }
///
/// 用户名称
///
public string UserName { get; set; }
}
public class StudentRequest_V2
{
///
/// 学生id(添加不传)
///
public long? Id { get; set; }
///
/// 班级id
///
public long ClassesId { get; set; }
///
/// 用户名称
///
public string UserName { get; set; }
///
/// 家长信息
///
public List? studentParentRequests { get; set; }
///
/// 备注
///
public string Remark { get; set; }
}
public class StudentParentRequest
{
///
/// 家长名称
///
public string ParentName { get; set; }
///
/// 字典表-关系
///
public long ParentRelation { get; set; }
///
/// 电话
///
public string ParentPhone { get; set; }
}
}