21 lines
445 B
C#
21 lines
445 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace LearningOfficer.OA.Common.Dtos.ClassSub
|
|
{
|
|
public class ClassSubRequest
|
|
{
|
|
/// <summary>
|
|
/// 班级id
|
|
/// </summary>
|
|
public long Class_id { get; set; } = 0;
|
|
/// <summary>
|
|
/// 科目id
|
|
/// </summary>
|
|
public long Sub_id { get; set; } = 0;
|
|
}
|
|
}
|