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

29 lines
710 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;
using UserCenter.Model.Enum;
namespace LearningOfficer.OA.Common.Dtos.ClassTeacher
{
/// <summary>
/// 班级教师添加或更新数据传输对象
/// </summary>
public class ClassTeacherAddOrUpdateDto
{
/// <summary>
/// 新增时不需要传Id更新时需要传Id
/// </summary>
public long Id { get; set; }
public long ClassId { get; set; }
public string TeacherName { get; set; }
/// <summary>
/// 0=班主任,>1=科任教师
/// </summary>
public int SubId { get; set; }
}
}