|
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; }
- public int asktype { set; get; }
- 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; }
- public int userid { set; get; }
- public string username { set; get; }
- public string userpic { set; get; }
- public int pmstate { set; get; }
- public List<int> onlineuser { set; get; }
-
-
-
- public string pic { set; get; }
-
- public int classid { set; get; }
-
- public string macaddress { get; set; }
- }
- }
|