星火直播PC
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ZWsBodyVo.cs 1.2KB

1234567891011121314151617181920212223242526272829303132
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace XHZB.Model
  7. {
  8. public class ZWsBodyVo
  9. {
  10. public long asktid { set; get; }//互动id
  11. public int asktype { set; get; }//30单选题31多选题32简答题
  12. public int radionum { set; get; }//单选题选项数量
  13. public string radioanswer { set; get; }//单选题正确答案
  14. public string teacherpic { set; get; }//试题题干图片
  15. public string studentans { set; get; }//单选题/简答题答案
  16. public int paperid { set; get; }//试卷ID
  17. public int userid { set; get; }//
  18. public string username { set; get; }//名字
  19. public string userpic { set; get; }//头像地址
  20. public int pmstate { set; get; }//屏幕状态1息屏2截屏
  21. public List<int> onlineuser { set; get; }//在线用户
  22. //public Classroom.TClassroomPaper paper { set; get; }
  23. //public TClassroomPaperStudent paperStudent { get; set; }
  24. public string pic { set; get; }//同屏图片地址
  25. public int classid { set; get; }//课堂ID
  26. public string macaddress { get; set; }//Mac地址
  27. }
  28. }