tuiwucarrer/Admin.NET/Admin.NET.Application/Service/CePing/BusStudentsReports/DTO/BusStudentsReportsInputDto.cs

65 lines
1.0 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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