1234567891011121314151617181920212223242526272829303132 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
-
- namespace XHZB.Model
- {
- public class ZWsBodyVo
- {
- public long asktid { set; get; }//互动id
- public int asktype { set; get; }//30单选题31多选题32简答题
- public int radionum { set; get; }//单选题选项数量
- public string radioanswer { set; get; }//单选题正确答案
- public string teacherpic { set; get; }//试题题干图片
- public string studentans { set; get; }//单选题/简答题答案
- public int paperid { set; get; }//试卷ID
- public int userid { set; get; }//
- public string username { set; get; }//名字
- public string userpic { set; get; }//头像地址
- public int pmstate { set; get; }//屏幕状态1息屏2截屏
- public List<int> onlineuser { set; get; }//在线用户
- //public Classroom.TClassroomPaper paper { set; get; }
- //public TClassroomPaperStudent paperStudent { get; set; }
-
- public string pic { set; get; }//同屏图片地址
-
- public int classid { set; get; }//课堂ID
-
- public string macaddress { get; set; }//Mac地址
- }
- }
|