星火直播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.

ZWsMsgVo.cs 706B

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. }