using System; namespace Admin.NET.Application { /// /// 家庭关联学生表输出参数 /// public class BusFramilyMapStudentsDto { /// /// 家庭Id /// public long FramilyId { get; set; } /// /// 学生Id /// public Guid StudentId { get; set; } /// /// 学生学号 /// public string BarCode { get; set; } /// /// 学生姓名 /// public string StudentName { get; set; } /// /// 学校名称 /// public string SchoolName { get; set; } /// /// 学生年级 /// public string GradeName { get; set; } /// /// 学生班级 /// public string ClassName { get; set; } /// /// 数据排序 /// public int Sort { get; set; } /// /// 租户id /// public long TenantId { get; set; } /// /// Id主键 /// public long Id { get; set; } } }