Quanxue.Zhanghao.Daochu/LearningOfficer.OA.Common/Dtos/ClassTeacher/ClassTeacherRequest.cs

25 lines
633 B
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.ClassTeacher
{
public class ClassTeacherRequest
{
/// <summary>
/// 班级Id
/// </summary>
public long ClassId { get; set; }
/// <summary>
/// 教师名称
/// </summary>
public string TeacherName { get; set; } = null!;
/// <summary>
/// 科目Id0时为班主任此id从班级里面的科目读取
/// </summary>
public long SubId { get; set; } = 0;
}
}