|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
-
- namespace XHZB.Model
- {
- public class REQStartClassModel
- {
-
-
-
- public string rtype { get; set; }
-
-
-
- public int subjectid { get; set; }
-
-
-
-
- public string subjectname { get; set; }
-
-
-
-
- public int classid { get; set; }
-
-
-
-
- public int classnum { get; set; }
-
-
-
-
- public string roomname { get; set; }
-
-
-
-
- public int lsbid { get; set; }
-
-
-
-
- public int teacherid { get; set; }
-
-
-
-
- public int directorid { get; set; }
-
-
-
-
- public int directortype { get; set; }
-
-
-
-
- public int schoolid { get; set; }
-
- public long roomid { get; set; }
-
-
-
-
- public long createtime { get; set; }
- }
- }
|