QuestionInfoItem.js 515 B

123456789101112131415161718192021
  1. export default class QuestionInfoItem
  2. {
  3. constructor(seatid)
  4. {
  5. this.seatId = seatid;
  6. this.title = '';
  7. this.answers = new Array();
  8. this.answers[0] = '';
  9. this.answers[1] = '';
  10. this.answers[2] = '';
  11. this.answers[3] = '';
  12. this.type = 0;
  13. this.res_name = null;
  14. this.res_data = null;
  15. this.texture = null;//纹理数据
  16. this.audioClip = null;//声音数据
  17. this.id = '';
  18. this.threeLevelId = '';
  19. }
  20. }