123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580 |
- <?php
- /**
- * Created by PhpStorm.
- * User: Administrator
- * Date: 2021/4/1 0001
- * Time: 13:56
- */
- class ProductPhysicsTpl
- {
- //物理错题本(班级)
- const PHYSICS_CLASS_WB ='{
- "studentLevelDivide": {
- "studentLevel": 4,
- "rankBase": "score",
- "statisticsMethods": "currentAchieve",
- "isPushSameTrain" : false,
- "levelDetails": [
- {
- "level": "A",
- "valueStart": {
- "score":91,
- "grade":1
- },
- "valueEnd": {
- "score":100,
- "grade":10
- },
- "isPushTrain": true,
- "errorPushDetail": {
- "smallTopic":["pushLose"],
- "largeTopic":["pushLose"],
- "difficulty": [3]
- }
- },
- {
- "valueStart": {
- "score":81,
- "grade":11
- },
- "valueEnd": {
- "score":90,
- "grade":20
- },
- "level": "B",
- "isPushTrain": false,
- "errorPushDetail": {
- "smallTopic":["pushLose"],
- "largeTopic":["pushThree"],
- "difficulty": [2,3]
- }
- },
- {
- "valueStart": {
- "score":61,
- "grade":21
- },
- "valueEnd": {
- "score":80,
- "grade":40
- },
- "level": "C",
- "isPushTrain": false,
- "errorPushDetail": {
- "smallTopic":["pushLose"],
- "largeTopic":["pushThree"],
- "difficulty": [2]
- }
- },
- {
- "valueStart": {
- "score":0,
- "grade":41
- },
- "valueEnd": {
- "score":60,
- "grade":60
- },
- "level": "D",
- "isPushTrain": false,
- "errorPushDetail": {
- "smallTopic":["pushLose"],
- "largeTopic":["pushHalf"],
- "difficulty": [1]
- }
- }
- ]
- },
- "errorTypeSetting": {
- "hasScoreDetail": true,
- "comprehensiveScore":true,
- "growthLine":true,
- "knowledgeChange":true,
- "hasErrorAnalyse":true,
- "selfRevision":true,
- "myAnswer":true,
- "classmateOptimization": true,
- "answerAnalysis": true
- }
- }';
- //物理错题本(学生)
- const PHYSICS_STU_WB ='{
- "studentLevelDivide": {
- "levelDetails": [
- {
- "isPushTrain": false,
- "errorPushDetail": {
- "smallTopic":["pushLose"],
- "largeTopic":["pushThree"],
- "difficulty": [2]
- }
- }
- ]
- },
- "errorTypeSetting": {
- "hasScoreDetail": true,
- "comprehensiveScore":true,
- "growthLine":true,
- "knowledgeChange":true,
- "hasErrorAnalyse":true,
- "selfRevision":true,
- "myAnswer":true,
- "classmateOptimization": true,
- "answerAnalysis": true
- }
- }';
- //物理二步个性化学习宝(班级)
- const PHYSICS_CLASS_ISP ='{
- "studentLevelDivide": {
- "studentLevel": 4,
- "rankBase": "score",
- "statisticsMethods": "currentAchieve",
- "isPushSameTrain" : false,
- "pushTopicType": false,
- "levelDetails": [
- {
- "valueStart": {
- "score":91,
- "grade":1
- },
- "valueEnd": {
- "score":100,
- "grade":10
- },
- "level":"A",
- "isPushTrain": true,
- "errorPushDetail": {
- "smallTopic": ["pushLose"],
- "largeTopic": ["pushLose"],
- "difficulty": [3]
- },
- "trainPushDetail": {
- "pushNumber": {
- "smallTopic": 2,
- "largeTopic": 2
- },
- "pushDifficulty": {"select": [0,3]},
- "topicGroupPushTopic": {
- "topicGroup": 1,
- "pushDifficulty": {"select": [0]}
- }
- }
- },
- {
- "valueStart": {
- "score":81,
- "grade":11
- },
- "valueEnd": {
- "score":90,
- "grade":20
- },
- "level":"B",
- "isPushTrain": false,
- "errorPushDetail": {
- "smallTopic": ["pushLose"],
- "largeTopic": ["pushThree"],
- "difficulty": [2,3]
- },
- "trainPushDetail": {
- "pushNumber": {
- "smallTopic": 2,
- "largeTopic": 1
- },
- "pushDifficulty": {"select": [0,3]},
- "topicGroupPushTopic": {
- "topicGroup": 1,
- "pushDifficulty": {"select": [0]}
- }
- }
- },
- {
- "valueStart": {
- "score":61,
- "grade":21
- },
- "valueEnd": {
- "score":80,
- "grade":40
- },
- "level":"C",
- "isPushTrain": false,
- "errorPushDetail": {
- "smallTopic": ["pushLose"],
- "largeTopic": ["pushThree"],
- "difficulty": [2]
- },
- "trainPushDetail": {
- "pushNumber": {
- "smallTopic": 2,
- "largeTopic": 1
- },
- "pushDifficulty": {"select": [0,1]},
- "topicGroupPushTopic": {
- "topicGroup": 1,
- "pushDifficulty": {"select": [0]}
- }
- }
- },
- {
- "valueStart": {
- "score":0,
- "grade":41
- },
- "valueEnd": {
- "score":60,
- "grade":60
- },
- "level":"D",
- "isPushTrain": false,
- "errorPushDetail": {
- "smallTopic": ["pushLose"],
- "largeTopic": ["pushHalf"],
- "difficulty": [1]
- },
- "trainPushDetail": {
- "pushNumber": {
- "smallTopic": 1,
- "largeTopic": 1
- },
- "pushDifficulty": {"select": [1]},
- "topicGroupPushTopic": {
- "topicGroup": 1,
- "pushDifficulty": {"select": [0]}
- }
- }
- }
- ]
- },
- "errorTypeSetting": {
- "hasScoreDetail": true,
- "comprehensiveScore": true,
- "growthLine": true,
- "knowledgeChange": true,
- "answerAnalysis": true
- }
- }';
- //物理二步个性化学习宝(学生)
- const PHYSICS_STU_ISP ='{
- "studentLevelDivide": {
- "levelDetails": [
- {
- "isPushTrain": false,
- "errorPushDetail": {
- "smallTopic": ["pushLose"],
- "largeTopic": ["pushThree"],
- "difficulty": [2]
- },
- "trainPushDetail": {
- "pushNumber": {
- "smallTopic": 2,
- "largeTopic": 1
- },
- "pushDifficulty": {"select": [0,1]}
- }
- }
- ]
- },
- "errorTypeSetting": {
- "hasScoreDetail": true,
- "comprehensiveScore": true,
- "growthLine": true,
- "knowledgeChange": true,
- "answerAnalysis": true
- }
- }';
- //物理三步个性化学习宝(班级)
- const PHYSICS_CLASS_WB_ISP='{
- "studentLevelDivide": {
- "studentLevel": 4,
- "rankBase": "score",
- "statisticsMethods": "currentAchieve",
- "isPushSameTrain" : false,
- "pushTopicType": false,
- "levelDetails": [
- {
- "valueStart": {
- "score":91,
- "grade":1
- },
- "valueEnd": {
- "score":100,
- "grade":10
- },
- "level":"A",
- "versionType":1,
- "isPushTrain": true,
- "errorPushDetail": {
- "smallTopic": ["pushLose"],
- "largeTopic": ["pushLose"],
- "difficulty": [3]
- },
- "trainPushDetail": {
- "pushNumber": {
- "smallTopic": 2,
- "largeTopic": 2
- },
- "basics":{
- "knowledge":3,
- "knowledgePushTopic":2
- },
- "pushDifficulty": {"select": [0,3]},
- "topicGroupPushTopic": {
- "topicGroup": 1,
- "pushDifficulty": {"select": [0]}
- }
- }
- },
- {
- "valueStart": {
- "score":81,
- "grade":11
- },
- "valueEnd": {
- "score":90,
- "grade":20
- },
- "level":"B",
- "versionType":1,
- "isPushTrain": false,
- "errorPushDetail": {
- "smallTopic": ["pushLose"],
- "largeTopic": ["pushThree"],
- "difficulty": [2,3]
- },
- "trainPushDetail": {
- "pushNumber": {
- "smallTopic": 2,
- "largeTopic": 1
- },
- "basics":{
- "knowledge":3,
- "knowledgePushTopic":2
- },
- "pushDifficulty": {"select": [0,3]},
- "topicGroupPushTopic": {
- "topicGroup": 1,
- "pushDifficulty": {"select": [0]}
- }
- }
- },
- {
- "valueStart": {
- "score":61,
- "grade":21
- },
- "valueEnd": {
- "score":80,
- "grade":40
- },
- "level":"C",
- "versionType":1,
- "isPushTrain": false,
- "errorPushDetail": {
- "smallTopic": ["pushLose"],
- "largeTopic": ["pushThree"],
- "difficulty": [2]
- },
- "trainPushDetail": {
- "pushNumber": {
- "smallTopic": 2,
- "largeTopic": 1
- },
- "basics":{
- "knowledge":3,
- "knowledgePushTopic":2
- },
- "pushDifficulty": {"select": [0,1]},
- "topicGroupPushTopic": {
- "topicGroup": 1,
- "pushDifficulty": {"select": [0]}
- }
- }
- },
- {
- "valueStart": {
- "score":0,
- "grade":41
- },
- "valueEnd": {
- "score":60,
- "grade":60
- },
- "level":"D",
- "versionType":1,
- "isPushTrain": false,
- "errorPushDetail": {
- "smallTopic": ["pushLose"],
- "largeTopic": ["pushHalf"],
- "difficulty": [1]
- },
- "trainPushDetail": {
- "pushNumber": {
- "smallTopic": 1,
- "largeTopic": 1
- },
- "basics":{
- "knowledge":3,
- "knowledgePushTopic":2
- },
- "pushDifficulty": {"select": [1]},
- "topicGroupPushTopic": {
- "topicGroup": 1,
- "pushDifficulty": {"select": [0]}
- }
- }
- }
- ]
- },
- "errorTypeSetting": {
- "hasScoreDetail": true,
- "comprehensiveScore": true,
- "growthLine": true,
- "knowledgeChange": true,
- "propositionTrend": true,
- "strikePain": true,
- "physicalScenario": false,
- "historyCollection": false,
- "errorOriginQuestion": true,
- "hasErrorAnalyse": true,
- "selfRevision": true,
- "promotionTraining": true,
- "myAnswer": true,
- "classmateOptimization": true,
- "commonProblems": true,
- "realProblemExpress": false,
- "answerAnalysis": true,
- "titleAnswerMerge": true
- },
- "abilityTypeSetting": {
- "hasScoreDetail": true,
- "comprehensiveScore": true,
- "growthLine": true,
- "lostPointAnalysis": true,
- "errorOriginQuestion": true,
- "hasErrorAnalyse": true,
- "selfRevision": true,
- "promotionTraining": true,
- "myAnswer": true,
- "classmateOptimization": true,
- "informationExtractionCapability": true,
- "modelBuildingAbility": true,
- "expandInquiryAbility": true,
- "flexibleApplicationAbility": true,
- "propositionTrend": true,
- "throughTestOfHigh": true,
- "commonProblems": false,
- "answerAnalysis": true,
- "titleAnswerMerge": true
- },
- "basicTypeSetting": {
- "hasScoreDetail": true,
- "comprehensiveScore": true,
- "growthLine": true,
- "lostPointAnalysis": true,
- "errorOriginQuestion": true,
- "hasErrorAnalyse": true,
- "selfRevision": true,
- "myAnswer": true,
- "classmateOptimization": true,
- "hasKnowledgeReview": true,
- "hasBasicMemory": true,
- "hasBasicApply": true,
- "hasBasicConsolidate":true,
- "commonProblems": false,
- "answerAnalysis": true,
- "titleAnswerMerge": true
- }
- }';
- //物理三步个性化学习宝(学生)
- const PHYSICS_STU_WB_ISP='{
- "studentLevelDivide": {
- "levelDetails": [
- {
- "versionType":1,
- "isPushTrain": false,
- "errorPushDetail": {
- "smallTopic": ["pushLose"],
- "largeTopic": ["pushThree"],
- "difficulty": [2]
- },
- "trainPushDetail": {
- "pushNumber": {
- "smallTopic": 2,
- "largeTopic": 1
- },
- "basics":{
- "knowledge":3,
- "knowledgePushTopic":2
- },
- "pushDifficulty": {"select": [0,1]}
- }
- }
- ]
- },
- "errorTypeSetting": {
- "hasScoreDetail": true,
- "comprehensiveScore": true,
- "growthLine": true,
- "knowledgeChange": true,
- "propositionTrend": true,
- "strikePain": true,
- "physicalScenario": false,
- "historyCollection": false,
- "errorOriginQuestion": true,
- "hasErrorAnalyse": true,
- "selfRevision": true,
- "promotionTraining": true,
- "myAnswer": true,
- "classmateOptimization": true,
- "commonProblems": true,
- "realProblemExpress": false,
- "answerAnalysis": true
- },
- "abilityTypeSetting": {
- "hasScoreDetail": true,
- "comprehensiveScore": true,
- "growthLine": true,
- "lostPointAnalysis": true,
- "errorOriginQuestion": true,
- "hasErrorAnalyse": true,
- "selfRevision": true,
- "promotionTraining": true,
- "myAnswer": true,
- "classmateOptimization": true,
- "informationExtractionCapability": true,
- "modelBuildingAbility": true,
- "expandInquiryAbility": true,
- "flexibleApplicationAbility": true,
- "propositionTrend": true,
- "throughTestOfHigh": true,
- "commonProblems": false,
- "answerAnalysis": true
- },
- "basicTypeSetting": {
- "hasScoreDetail": true,
- "comprehensiveScore": true,
- "growthLine": true,
- "lostPointAnalysis": true,
- "errorOriginQuestion": true,
- "hasErrorAnalyse": true,
- "selfRevision": true,
- "myAnswer": true,
- "classmateOptimization": true,
- "hasKnowledgeReview": true,
- "hasBasicMemory": true,
- "hasBasicApply": true,
- "hasBasicConsolidate":true,
- "commonProblems": false,
- "answerAnalysis": true
- }
- }';
- }
|