星火直播PC
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

123456789101112131415161718192021222324252627282930
  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 ZWsMsgVo
  9. {
  10. public int type { set; get; }
  11. public long rid { set; get; }//互动课堂id
  12. public int from { set; get; }//用户ssouserid
  13. public List<int> to { set; get; }//对象
  14. public int usertype
  15. { set; get; }//用户ssouserid
  16. public ZWsBodyVo body { set; get; }//内容
  17. public string device { set; get; }// pad平板 web网页
  18. public string msg { set; get; }// 错误信息
  19. public ZWsMsgVo()
  20. {
  21. body = new ZWsBodyVo();
  22. }
  23. }
  24. }