using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Admin.NET.Application { /// /// /// public class ReportInputDto { /// /// 0 1 2 3 /// public int Type { get; set; } /// /// 约定Key /// public string Key { get; set; } /// /// /// public string ReportId { get; set; } /// /// /// public string UUID { get; set; } /// /// 周期名称 /// public string CycName { get; set; } /// /// /// public string StudentId { get; set; } } }