25 lines
709 B
C#
25 lines
709 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace YD_XinWei.Commons.Dto.Open
|
|
{
|
|
public class StudentInfoDto
|
|
{
|
|
public int Id { get; set; }
|
|
public int UserId { get; set; }
|
|
public int OrgId { get; set; }
|
|
public int GradeId { get; set; }
|
|
public int RuleGradeId { get; set; }
|
|
public string GradeName { get; set; }
|
|
public int ClassId { get; set; }
|
|
public string ClassName { get; set; }
|
|
public string Name { get; set; }
|
|
public string Sex { get; set; }
|
|
public string StudentNo { get; set; }
|
|
public object CardNo { get; set; }
|
|
}
|
|
}
|