RecordResultBean.java 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. package com.edufound.reader.bean;
  2. public class RecordResultBean {
  3. int overall;
  4. //速度
  5. int speed;
  6. //声调
  7. int tone;
  8. //完整度
  9. int integrity;
  10. //正确率
  11. int accuracy;
  12. public RecordResultBean() {
  13. }
  14. public RecordResultBean(int overall, int speed, int tone, int integrity, int accuracy) {
  15. this.overall = overall;
  16. this.speed = speed;
  17. this.tone = tone;
  18. this.integrity = integrity;
  19. this.accuracy = accuracy;
  20. }
  21. public int getOverall() {
  22. return overall;
  23. }
  24. public void setOverall(int overall) {
  25. this.overall = overall;
  26. }
  27. public int getSpeed() {
  28. return speed;
  29. }
  30. public void setSpeed(int speed) {
  31. this.speed = speed;
  32. }
  33. public int getTone() {
  34. return tone;
  35. }
  36. public void setTone(int tone) {
  37. this.tone = tone;
  38. }
  39. public int getIntegrity() {
  40. return integrity;
  41. }
  42. public void setIntegrity(int integrity) {
  43. this.integrity = integrity;
  44. }
  45. public int getAccuracy() {
  46. return accuracy;
  47. }
  48. public void setAccuracy(int accuracy) {
  49. this.accuracy = accuracy;
  50. }
  51. }