using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Admin.NET.Application { /// /// /// public class BusStudentsReportsInputDto { /// /// 家长UUID /// public string UuId { get; set; } /// ///类型0 生涯,1专业定位 2 学生发展 3 心理健康 /// public int Type { get; set; } /// /// /// public string StudentId { get; set; } } /// /// /// public class MobileStudentsReportsRequestDto { /// /// 0 1 2 3 /// public int Type { get; set; } /// /// 约定Key /// public string Key { get; set; } /// /// 学生Id /// public string StudentId { get; set; } } }