Quanxue.Zhanghao.Daochu/LearningOfficer.OA.Common/Dtos/ClassSub/ClassSubResult.cs

34 lines
811 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace LearningOfficer.OA.Common.Dtos.ClassSub
{
/// <summary>
/// 工作台-班级科目绑定表
/// </summary>
public class ClassSubResult
{
public long? Id { get; set; } = 0;
/// <summary>
/// 班级名称
/// </summary>
public string ClassName { get; set; } = null!;
/// <summary>
/// 科目名称
/// </summary>
public string SubName { get; set; } = null!;
/// <summary>
/// 班级Id
/// </summary>
public long ClassId { get; set; } = 0;
/// <summary>
/// 科目Id
/// </summary>
public long SubId { get; set; } = 0;
}
}