14 lines
273 B
C#
Raw Normal View History

2025-06-06 14:57:20 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace YD_WeChatApplet.Commons.Dto.School
{
public class StudentListByClassIdDto : PageDto
{
public int ClassId { get; set; }
}
}