123456789101112131415161718192021 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace TEAMModelOS.Model.Evaluation.Dtos.Own
- {
- public class TestPaperDto
- {
- public string Name { get; set; }
- public List<string> ItemId { get; set; }
- public string SchoolCode { get; set; }
- public string PeriodCode { get; set; }
- public string GradeCode { get; set; }
- public string ClassCode { get; set; }
- public string SubjectCode { get; set; }
- public string TeamodelId { get; set; }
- public List<string> Point { get; set; }
- public object Extend { get; set; }
- public int State { get; set; }
- }
- }
|