data.js 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336
  1. module.exports.QuestionnaireList = [
  2. {
  3. "objectId": "questionnaire1",
  4. "createdAt": "2024-12-10T11:20:24Z",
  5. "QuestionnaireId": "q1", // 新增的非数据库生成的主键
  6. "title": "兴趣调查问卷",
  7. "status": "已发布",
  8. "questions": [
  9. "question1", // 修改为 String 类型
  10. "question2" // 修改为 String 类型
  11. ]
  12. },
  13. {
  14. "createdAt": "2024-12-10T11:20:24Z",
  15. "QuestionnaireId": "test_q1", // 新增的非数据库生成的主键
  16. "title": "基于基本情况的兴趣调查问卷",
  17. "status": "已发布",
  18. "questions": [
  19. "test_q1_q1", // 修改为 String 类型
  20. "test_q1_q2", // 修改为 String 类型
  21. "test_q1_q3", // 修改为 String 类型
  22. "test_q1_q4" // 修改为 String 类型
  23. ]
  24. }
  25. ];
  26. module.exports.QuestionList = [
  27. {
  28. "objectId": "question1",
  29. "createdAt": "2024-12-10T11:20:24Z",
  30. "QuestionId": "q1", // 新增的非数据库生成的主键
  31. "questionnaireId": "questionnaire1", // 修改为 String 类型
  32. "questionText": "你最喜欢的活动是什么?",
  33. "options": [
  34. "option1", // 修改为 String 类型
  35. "option2" // 修改为 String 类型
  36. ]
  37. },
  38. {
  39. "objectId": "question2",
  40. "createdAt": "2024-12-10T11:20:24Z",
  41. "QuestionId": "q2", // 新增的非数据库生成的主键
  42. "questionnaireId": "questionnaire1", // 修改为 String 类型
  43. "questionText": "你喜欢的休闲方式是什么?",
  44. "options": [
  45. "option3", // 修改为 String 类型
  46. "option4" // 修改为 String 类型
  47. ]
  48. },
  49. {
  50. "createdAt": "2024-12-10T11:20:24Z",
  51. "QuestionId": "test_q1_q1", // 新增的非数据库生成的主键
  52. "questionnaireId": "test_q1", // 修改为 String 类型
  53. "questionText": "你工作几年了?",
  54. "options": [
  55. "test_q1_q1_o1", // 修改为 String 类型
  56. "test_q1_q1_o2", // 修改为 String 类型
  57. "test_q1_q1_o3" // 修改为 String 类型
  58. ]
  59. },
  60. {
  61. "createdAt": "2024-12-10T11:20:24Z",
  62. "QuestionId": "test_q1_q2", // 新增的非数据库生成的主键
  63. "questionnaireId": "test_q1", // 修改为 String 类型
  64. "questionText": "从事什么类型的职业?",
  65. "options": [
  66. "test_q1_q2_o1", // 修改为 String 类型
  67. "test_q1_q2_o2", // 修改为 String 类型
  68. "test_q1_q2_o3", // 修改为 String 类型
  69. "test_q1_q2_o4", // 修改为 String 类型
  70. "test_q1_q2_o5" // 修改为 String 类型
  71. ]
  72. },
  73. {
  74. "createdAt": "2024-12-10T11:20:24Z",
  75. "QuestionId": "test_q1_q3", // 新增的非数据库生成的主键
  76. "questionnaireId": "test_q1", // 修改为 String 类型
  77. "questionText": "是否喜欢吃水果?",
  78. "options": [
  79. "test_q1_q3_o1", // 修改为 String 类型
  80. "test_q1_q3_o2" // 修改为 String 类型
  81. ]
  82. },
  83. {
  84. "createdAt": "2024-12-10T11:20:24Z",
  85. "QuestionId": "test_q1_q4", // 新增的非数据库生成的主键
  86. "questionnaireId": "test_q1", // 修改为 String 类型
  87. "questionText": "喜欢什么运动?",
  88. "options": [
  89. "test_q1_q4_o1", // 修改为 String 类型
  90. "test_q1_q4_o2", // 修改为 String 类型
  91. "test_q1_q4_o3", // 修改为 String 类型
  92. "test_q1_q4_o4" // 修改为 String 类型
  93. ]
  94. }
  95. ];
  96. module.exports.OptionList = [
  97. {
  98. "objectId": "option1",
  99. "createdAt": "2024-12-10T11:20:24Z",
  100. "OptionId": "o1", // 新增的非数据库生成的主键
  101. "QuestionId": "question1", // 修改为 String 类型
  102. "optionText": "户外活动",
  103. "isSelected": false
  104. },
  105. {
  106. "objectId": "option2",
  107. "createdAt": "2024-12-10T11:20:24Z",
  108. "OptionId": "o2", // 新增的非数据库生成的主键
  109. "QuestionId": "question1", // 修改为 String 类型
  110. "optionText": "阅读",
  111. "isSelected": false
  112. },
  113. {
  114. "objectId": "option3",
  115. "createdAt": "2024-12-10T11:20:24Z",
  116. "OptionId": "o3", // 新增的非数据库生成的主键
  117. "QuestionId": "question2", // 修改为 String 类型
  118. "optionText": "看电影",
  119. "isSelected": false
  120. },
  121. {
  122. "objectId": "option4",
  123. "createdAt": "2024-12-10T11:20:24Z",
  124. "OptionId": "o4", // 新增的非数据库生成的主键
  125. "QuestionId": "question2", // 修改为 String 类型
  126. "optionText": "旅游",
  127. "isSelected": false
  128. },
  129. {
  130. "createdAt": "2024-12-10T11:20:24Z",
  131. "OptionId": "test_q1_q1_o1", // 新增的非数据库生成的主键
  132. "QuestionId": "test_q1_q1", // 修改为 String 类型
  133. "optionText": "0-3年",
  134. "isSelected": false
  135. },
  136. {
  137. "createdAt": "2024-12-10T11:20:24Z",
  138. "OptionId": "test_q1_q1_o2", // 新增的非数据库生成的主键
  139. "QuestionId": "test_q1_q1", // 修改为 String 类型
  140. "optionText": "3-5年",
  141. "isSelected": false
  142. },
  143. {
  144. "createdAt": "2024-12-10T11:20:24Z",
  145. "OptionId": "test_q1_q1_o3", // 新增的非数据库生成的主键
  146. "QuestionId": "test_q1_q1", // 修改为 String 类型
  147. "optionText": "5年以上",
  148. "isSelected": false
  149. },
  150. {
  151. "createdAt": "2024-12-10T11:20:24Z",
  152. "OptionId": "test_q1_q2_o1", // 新增的非数据库生成的主键
  153. "QuestionId": "test_q1_q2", // 修改为 String 类型
  154. "optionText": "前端开发",
  155. "isSelected": false
  156. },
  157. {
  158. "createdAt": "2024-12-10T11:20:24Z",
  159. "OptionId": "test_q1_q2_o2", // 新增的非数据库生成的主键
  160. "QuestionId": "test_q1_q2", // 修改为 String 类型
  161. "optionText": "后端开发",
  162. "isSelected": false
  163. },
  164. {
  165. "createdAt": "2024-12-10T11:20:24Z",
  166. "OptionId": "test_q1_q2_o3", // 新增的非数据库生成的主键
  167. "QuestionId": "test_q1_q2", // 修改为 String 类型
  168. "optionText": "产品经理",
  169. "isSelected": false
  170. },
  171. {
  172. "createdAt": "2024-12-10T11:20:24Z",
  173. "OptionId": "test_q1_q2_o4", // 新增的非数据库生成的主键
  174. "QuestionId": "test_q1_q2", // 修改为 String 类型
  175. "optionText": "UI设计师",
  176. "isSelected": false
  177. },
  178. {
  179. "createdAt": "2024-12-10T11:20:24Z",
  180. "OptionId": "test_q1_q2_o5", // 新增的非数据库生成的主键
  181. "QuestionId": "test_q1_q2", // 修改为 String 类型
  182. "optionText": "其他",
  183. "isSelected": false
  184. },
  185. {
  186. "createdAt": "2024-12-10T11:20:24Z",
  187. "OptionId": "test_q1_q3_o1", // 新增的非数据库生成的主键
  188. "QuestionId": "test_q1_q3",
  189. "optionText": "是",
  190. "isSelected": false
  191. },
  192. {
  193. "createdAt": "2024-12-10T11:20:24Z",
  194. "OptionId": "test_q1_q3_o2", // 新增的非数据库生成的主键
  195. "QuestionId": "test_q1_q3",
  196. "optionText": "否",
  197. "isSelected": false
  198. },
  199. {
  200. "createdAt": "2024-12-10T11:20:24Z",
  201. "OptionId": "test_q1_q4_o1", // 新增的非数据库生成的主键
  202. "QuestionId": "test_q1_q4",
  203. "optionText": "篮球",
  204. "isSelected": false
  205. },
  206. {
  207. "createdAt": "2024-12-10T11:20:24Z",
  208. "OptionId": "test_q1_q4_o2", // 新增的非数据库生成的主键
  209. "QuestionId": "test_q1_q4",
  210. "optionText": "足球",
  211. "isSelected": false
  212. },
  213. {
  214. "createdAt": "2024-12-10T11:20:24Z",
  215. "OptionId": "test_q1_q4_o3", // 新增的非数据库生成的主键
  216. "QuestionId": "test_q1_q4",
  217. "optionText": "羽毛球",
  218. "isSelected": false
  219. },
  220. {
  221. "createdAt": "2024-12-10T11:20:24Z",
  222. "OptionId": "test_q1_q4_o4", // 新增的非数据库生成的主键
  223. "QuestionId": "test_q1_q4",
  224. "optionText": "其他",
  225. "isSelected": false
  226. }
  227. ];
  228. module.exports.QuestionnaireResultList = [
  229. {
  230. "objectId": "result1",
  231. "createdAt": "2024-12-10T11:20:24Z",
  232. "QuestionnaireResultId": "qr1", // 新增的非数据库生成的主键
  233. "userId": {
  234. "__type": "Pointer",
  235. "className": "_User", // 修改为 _User,符合标准类型
  236. "objectId": "user1" // 修改为 objectId,符合 Pointer 类型格式
  237. },
  238. "questionnaireId": {
  239. "__type": "Pointer",
  240. "className": "Questionnaire",
  241. "objectId": "questionnaire1" // 修改为 objectId,符合 Pointer 类型格式
  242. },
  243. "answers": [
  244. {
  245. "__type": "Pointer",
  246. "className": "Option",
  247. "objectId": "option1" // 修改为 objectId,符合 Pointer 类型格式
  248. },
  249. {
  250. "__type": "Pointer",
  251. "className": "Option",
  252. "objectId": "option2" // 修改为 objectId,符合 Pointer 类型格式
  253. }
  254. ]
  255. },
  256. {
  257. "objectId": "result2",
  258. "createdAt": "2024-12-10T11:20:24Z",
  259. "QuestionnaireResultId": "qr2", // 新增的非数据库生成的主键
  260. "userId": {
  261. "__type": "Pointer",
  262. "className": "_User", // 修改为 _User,符合标准类型
  263. "objectId": "user2" // 修改为 objectId,符合 Pointer 类型格式
  264. },
  265. "questionnaireId": {
  266. "__type": "Pointer",
  267. "className": "Questionnaire",
  268. "objectId": "questionnaire1" // 修改为 objectId,符合 Pointer 类型格式
  269. },
  270. "answers": [
  271. {
  272. "__type": "Pointer",
  273. "className": "Option",
  274. "objectId": "option3" // 修改为 objectId,符合 Pointer 类型格式
  275. },
  276. {
  277. "__type": "Pointer",
  278. "className": "Option",
  279. "objectId": "option4" // 修改为 objectId,符合 Pointer 类型格式
  280. }
  281. ]
  282. }
  283. ];
  284. module.exports.UserInterestProfileList = [
  285. {
  286. "objectId": "profile1",
  287. "createdAt": "2024-12-10T11:20:24Z",
  288. "userId": {
  289. "__type": "Pointer",
  290. "className": "_User", // 修改为 _User,符合标准类型
  291. "objectId": "user1" // 修改为 objectId,符合 Pointer 类型格式
  292. },
  293. "interestTags": ["户外活动", "阅读"],
  294. "results": [
  295. {
  296. "__type": "Pointer",
  297. "className": "QuestionnaireResult",
  298. "objectId": "result1" // 修改为 objectId,符合 Pointer 类型格式
  299. }
  300. ],
  301. "content": "用户喜欢户外活动和阅读,喜欢在自然中放松和探索新书籍。"
  302. },
  303. {
  304. "objectId": "profile2",
  305. "createdAt": "2024-12-10T11:20:24Z",
  306. "userId": {
  307. "__type": "Pointer",
  308. "className": "_User", // 修改为 _User,符合标准类型
  309. "objectId": "user2" // 修改为 objectId,符合 Pointer 类型格式
  310. },
  311. "interestTags": ["看电影", "旅游"],
  312. "results": [
  313. {
  314. "__type": "Pointer",
  315. "className": "QuestionnaireResult",
  316. "objectId": "result2" // 修改为 objectId,符合 Pointer 类型格式
  317. }
  318. ],
  319. "content": "用户热爱看电影和旅游,喜欢通过电影探索不同的文化和风景。"
  320. }
  321. ];