123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336 |
- module.exports.QuestionnaireList = [
- {
- "objectId": "questionnaire1",
- "createdAt": "2024-12-10T11:20:24Z",
- "QuestionnaireId": "q1", // 新增的非数据库生成的主键
- "title": "兴趣调查问卷",
- "status": "已发布",
- "questions": [
- "question1", // 修改为 String 类型
- "question2" // 修改为 String 类型
- ]
- },
- {
- "createdAt": "2024-12-10T11:20:24Z",
- "QuestionnaireId": "test_q1", // 新增的非数据库生成的主键
- "title": "基于基本情况的兴趣调查问卷",
- "status": "已发布",
- "questions": [
- "test_q1_q1", // 修改为 String 类型
- "test_q1_q2", // 修改为 String 类型
- "test_q1_q3", // 修改为 String 类型
- "test_q1_q4" // 修改为 String 类型
- ]
- }
- ];
- module.exports.QuestionList = [
- {
- "objectId": "question1",
- "createdAt": "2024-12-10T11:20:24Z",
- "QuestionId": "q1", // 新增的非数据库生成的主键
- "questionnaireId": "questionnaire1", // 修改为 String 类型
- "questionText": "你最喜欢的活动是什么?",
- "options": [
- "option1", // 修改为 String 类型
- "option2" // 修改为 String 类型
- ]
- },
- {
- "objectId": "question2",
- "createdAt": "2024-12-10T11:20:24Z",
- "QuestionId": "q2", // 新增的非数据库生成的主键
- "questionnaireId": "questionnaire1", // 修改为 String 类型
- "questionText": "你喜欢的休闲方式是什么?",
- "options": [
- "option3", // 修改为 String 类型
- "option4" // 修改为 String 类型
- ]
- },
- {
- "createdAt": "2024-12-10T11:20:24Z",
- "QuestionId": "test_q1_q1", // 新增的非数据库生成的主键
- "questionnaireId": "test_q1", // 修改为 String 类型
- "questionText": "你工作几年了?",
- "options": [
- "test_q1_q1_o1", // 修改为 String 类型
- "test_q1_q1_o2", // 修改为 String 类型
- "test_q1_q1_o3" // 修改为 String 类型
- ]
- },
- {
- "createdAt": "2024-12-10T11:20:24Z",
- "QuestionId": "test_q1_q2", // 新增的非数据库生成的主键
- "questionnaireId": "test_q1", // 修改为 String 类型
- "questionText": "从事什么类型的职业?",
- "options": [
- "test_q1_q2_o1", // 修改为 String 类型
- "test_q1_q2_o2", // 修改为 String 类型
- "test_q1_q2_o3", // 修改为 String 类型
- "test_q1_q2_o4", // 修改为 String 类型
- "test_q1_q2_o5" // 修改为 String 类型
- ]
- },
- {
- "createdAt": "2024-12-10T11:20:24Z",
- "QuestionId": "test_q1_q3", // 新增的非数据库生成的主键
- "questionnaireId": "test_q1", // 修改为 String 类型
- "questionText": "是否喜欢吃水果?",
- "options": [
- "test_q1_q3_o1", // 修改为 String 类型
- "test_q1_q3_o2" // 修改为 String 类型
- ]
- },
- {
- "createdAt": "2024-12-10T11:20:24Z",
- "QuestionId": "test_q1_q4", // 新增的非数据库生成的主键
- "questionnaireId": "test_q1", // 修改为 String 类型
- "questionText": "喜欢什么运动?",
- "options": [
- "test_q1_q4_o1", // 修改为 String 类型
- "test_q1_q4_o2", // 修改为 String 类型
- "test_q1_q4_o3", // 修改为 String 类型
- "test_q1_q4_o4" // 修改为 String 类型
- ]
- }
- ];
- module.exports.OptionList = [
- {
- "objectId": "option1",
- "createdAt": "2024-12-10T11:20:24Z",
- "OptionId": "o1", // 新增的非数据库生成的主键
- "QuestionId": "question1", // 修改为 String 类型
- "optionText": "户外活动",
- "isSelected": false
- },
- {
- "objectId": "option2",
- "createdAt": "2024-12-10T11:20:24Z",
- "OptionId": "o2", // 新增的非数据库生成的主键
- "QuestionId": "question1", // 修改为 String 类型
- "optionText": "阅读",
- "isSelected": false
- },
- {
- "objectId": "option3",
- "createdAt": "2024-12-10T11:20:24Z",
- "OptionId": "o3", // 新增的非数据库生成的主键
- "QuestionId": "question2", // 修改为 String 类型
- "optionText": "看电影",
- "isSelected": false
- },
- {
- "objectId": "option4",
- "createdAt": "2024-12-10T11:20:24Z",
- "OptionId": "o4", // 新增的非数据库生成的主键
- "QuestionId": "question2", // 修改为 String 类型
- "optionText": "旅游",
- "isSelected": false
- },
- {
- "createdAt": "2024-12-10T11:20:24Z",
- "OptionId": "test_q1_q1_o1", // 新增的非数据库生成的主键
- "QuestionId": "test_q1_q1", // 修改为 String 类型
- "optionText": "0-3年",
- "isSelected": false
- },
- {
- "createdAt": "2024-12-10T11:20:24Z",
- "OptionId": "test_q1_q1_o2", // 新增的非数据库生成的主键
- "QuestionId": "test_q1_q1", // 修改为 String 类型
- "optionText": "3-5年",
- "isSelected": false
- },
- {
- "createdAt": "2024-12-10T11:20:24Z",
- "OptionId": "test_q1_q1_o3", // 新增的非数据库生成的主键
- "QuestionId": "test_q1_q1", // 修改为 String 类型
- "optionText": "5年以上",
- "isSelected": false
- },
- {
- "createdAt": "2024-12-10T11:20:24Z",
- "OptionId": "test_q1_q2_o1", // 新增的非数据库生成的主键
- "QuestionId": "test_q1_q2", // 修改为 String 类型
- "optionText": "前端开发",
- "isSelected": false
- },
- {
- "createdAt": "2024-12-10T11:20:24Z",
- "OptionId": "test_q1_q2_o2", // 新增的非数据库生成的主键
- "QuestionId": "test_q1_q2", // 修改为 String 类型
- "optionText": "后端开发",
- "isSelected": false
- },
- {
- "createdAt": "2024-12-10T11:20:24Z",
- "OptionId": "test_q1_q2_o3", // 新增的非数据库生成的主键
- "QuestionId": "test_q1_q2", // 修改为 String 类型
- "optionText": "产品经理",
- "isSelected": false
- },
- {
- "createdAt": "2024-12-10T11:20:24Z",
- "OptionId": "test_q1_q2_o4", // 新增的非数据库生成的主键
- "QuestionId": "test_q1_q2", // 修改为 String 类型
- "optionText": "UI设计师",
- "isSelected": false
- },
- {
- "createdAt": "2024-12-10T11:20:24Z",
- "OptionId": "test_q1_q2_o5", // 新增的非数据库生成的主键
- "QuestionId": "test_q1_q2", // 修改为 String 类型
- "optionText": "其他",
- "isSelected": false
- },
- {
- "createdAt": "2024-12-10T11:20:24Z",
- "OptionId": "test_q1_q3_o1", // 新增的非数据库生成的主键
- "QuestionId": "test_q1_q3",
- "optionText": "是",
- "isSelected": false
- },
- {
- "createdAt": "2024-12-10T11:20:24Z",
- "OptionId": "test_q1_q3_o2", // 新增的非数据库生成的主键
- "QuestionId": "test_q1_q3",
- "optionText": "否",
- "isSelected": false
- },
- {
- "createdAt": "2024-12-10T11:20:24Z",
- "OptionId": "test_q1_q4_o1", // 新增的非数据库生成的主键
- "QuestionId": "test_q1_q4",
- "optionText": "篮球",
- "isSelected": false
- },
- {
- "createdAt": "2024-12-10T11:20:24Z",
- "OptionId": "test_q1_q4_o2", // 新增的非数据库生成的主键
- "QuestionId": "test_q1_q4",
- "optionText": "足球",
- "isSelected": false
- },
- {
- "createdAt": "2024-12-10T11:20:24Z",
- "OptionId": "test_q1_q4_o3", // 新增的非数据库生成的主键
- "QuestionId": "test_q1_q4",
- "optionText": "羽毛球",
- "isSelected": false
- },
- {
- "createdAt": "2024-12-10T11:20:24Z",
- "OptionId": "test_q1_q4_o4", // 新增的非数据库生成的主键
- "QuestionId": "test_q1_q4",
- "optionText": "其他",
- "isSelected": false
- }
- ];
- module.exports.QuestionnaireResultList = [
- {
- "objectId": "result1",
- "createdAt": "2024-12-10T11:20:24Z",
- "QuestionnaireResultId": "qr1", // 新增的非数据库生成的主键
- "userId": {
- "__type": "Pointer",
- "className": "_User", // 修改为 _User,符合标准类型
- "objectId": "user1" // 修改为 objectId,符合 Pointer 类型格式
- },
- "questionnaireId": {
- "__type": "Pointer",
- "className": "Questionnaire",
- "objectId": "questionnaire1" // 修改为 objectId,符合 Pointer 类型格式
- },
- "answers": [
- {
- "__type": "Pointer",
- "className": "Option",
- "objectId": "option1" // 修改为 objectId,符合 Pointer 类型格式
- },
- {
- "__type": "Pointer",
- "className": "Option",
- "objectId": "option2" // 修改为 objectId,符合 Pointer 类型格式
- }
- ]
- },
- {
- "objectId": "result2",
- "createdAt": "2024-12-10T11:20:24Z",
- "QuestionnaireResultId": "qr2", // 新增的非数据库生成的主键
- "userId": {
- "__type": "Pointer",
- "className": "_User", // 修改为 _User,符合标准类型
- "objectId": "user2" // 修改为 objectId,符合 Pointer 类型格式
- },
- "questionnaireId": {
- "__type": "Pointer",
- "className": "Questionnaire",
- "objectId": "questionnaire1" // 修改为 objectId,符合 Pointer 类型格式
- },
- "answers": [
- {
- "__type": "Pointer",
- "className": "Option",
- "objectId": "option3" // 修改为 objectId,符合 Pointer 类型格式
- },
- {
- "__type": "Pointer",
- "className": "Option",
- "objectId": "option4" // 修改为 objectId,符合 Pointer 类型格式
- }
- ]
- }
- ];
- module.exports.UserInterestProfileList = [
- {
- "objectId": "profile1",
- "createdAt": "2024-12-10T11:20:24Z",
- "userId": {
- "__type": "Pointer",
- "className": "_User", // 修改为 _User,符合标准类型
- "objectId": "user1" // 修改为 objectId,符合 Pointer 类型格式
- },
- "interestTags": ["户外活动", "阅读"],
- "results": [
- {
- "__type": "Pointer",
- "className": "QuestionnaireResult",
- "objectId": "result1" // 修改为 objectId,符合 Pointer 类型格式
- }
- ],
- "content": "用户喜欢户外活动和阅读,喜欢在自然中放松和探索新书籍。"
- },
- {
- "objectId": "profile2",
- "createdAt": "2024-12-10T11:20:24Z",
- "userId": {
- "__type": "Pointer",
- "className": "_User", // 修改为 _User,符合标准类型
- "objectId": "user2" // 修改为 objectId,符合 Pointer 类型格式
- },
- "interestTags": ["看电影", "旅游"],
- "results": [
- {
- "__type": "Pointer",
- "className": "QuestionnaireResult",
- "objectId": "result2" // 修改为 objectId,符合 Pointer 类型格式
- }
- ],
- "content": "用户热爱看电影和旅游,喜欢通过电影探索不同的文化和风景。"
- }
- ];
|