test-center.ts 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  1. export interface HollandRecord {
  2. "createBy": string | null;
  3. "createTime": string;
  4. "updateBy": string | null;
  5. "updateTime": string | null;
  6. "remark": string | null;
  7. "id": number;
  8. "customerCode": string;
  9. "code": string;
  10. "wants1": string | null;
  11. "wants2": string | null;
  12. "wants3": string | null;
  13. "ruleCode": string;
  14. "scorer": number;
  15. "scorei": number;
  16. "scorea": number;
  17. "scores": number;
  18. "scoree": number;
  19. "scorec": number;
  20. "status": number;
  21. }
  22. export interface HollandRule {
  23. "createBy": string | null;
  24. "createTime": string | null;
  25. "updateBy": string | null;
  26. "updateTime": string | null;
  27. "remark": string | null;
  28. "id": number;
  29. "code": string;
  30. "jobs": string;
  31. "marjors": string; // '多个用、号分隔'
  32. "status": number;
  33. }
  34. export interface HollandDetail {
  35. "createBy": string | null;
  36. "createTime": string | null;
  37. "updateBy": string | null;
  38. "updateTime": string | null;
  39. "remark": string | null;
  40. "id": number;
  41. "customerCode": string;
  42. "recordCode": string;
  43. "stepId": number;
  44. "stepTitle": string;
  45. "questionId": number;
  46. "ruleCode": string;
  47. "questionTitle": string;
  48. "answer": string;
  49. "options": string[];
  50. "status": number;
  51. }
  52. export interface HollandEntity extends HollandRecord {
  53. rule: HollandRule;
  54. details: HollandDetail[];
  55. }
  56. export interface MbtiRecord {
  57. "createBy": string | null;
  58. "createTime": string;
  59. "updateBy": string | null;
  60. "updateTime": string | null;
  61. "remark": string | null;
  62. "id": number;
  63. "customerCode": string;
  64. "code": string;
  65. "ruleCode": string;
  66. "scoreE": number;
  67. "scoreI": number;
  68. "scoreS": number;
  69. "scoreN": number;
  70. "scoreT": number;
  71. "scoreF": number;
  72. "scoreJ": number;
  73. "scoreP": number;
  74. "status": number;
  75. }
  76. export interface MbtiRule {
  77. "createBy": string | null;
  78. "createTime": string | null;
  79. "updateBy": string | null;
  80. "updateTime": string | null;
  81. "remark": string | null;
  82. "id": number;
  83. "code": string;
  84. "name": string | null;
  85. "title": string;
  86. "status": number;
  87. }
  88. export interface MbtiDetail {
  89. "createBy": string | null;
  90. "createTime": string | null;
  91. "updateBy": string | null;
  92. "updateTime": string | null;
  93. "remark": string | null;
  94. "id": number;
  95. "customerCode": string;
  96. "recordCode": string;
  97. "stepId": number;
  98. "stepTitle": string;
  99. "questionId": number;
  100. "questionTitle": string;
  101. "optionA": string;
  102. "optionB": string;
  103. "valueA": string;
  104. "valueB": string;
  105. "answer": string;
  106. "status": number;
  107. }
  108. export interface MbtiEntity extends MbtiRecord {
  109. "rule": MbtiRule;
  110. "details": MbtiDetail[]
  111. }
  112. export interface MbtiRecommendMajor {
  113. "createBy": string | null;
  114. "createTime": string | null;
  115. "updateBy": string | null;
  116. "updateTime": string | null;
  117. "remark": string | null;
  118. "id": number;
  119. "code": string | null;
  120. "category": string | null;
  121. "major": string | null;
  122. "majors": string | null;
  123. }
  124. export interface MbtiRecommendMajorCategory {
  125. "createBy": string | null;
  126. "createTime": string | null;
  127. "updateBy": string | null;
  128. "updateTime": string | null;
  129. "remark": string | null;
  130. "id": number;
  131. "code": string | null;
  132. "category": string;
  133. "major": string | null;
  134. "majors": MbtiRecommendMajor[];
  135. }