| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370 |
- {
- "appliedAt": "2026-09-03T06:25:30.195Z",
- "sourceVersion": "2026-fall",
- "backupPath": "/Users/chengjie/Documents/git/miaoguo_system_server/.vscode/秒过知识库更新/backups/before_ancient_daily_2026_fall_2026-09-03T06-25-28-871Z.json",
- "plan": {
- "generatedAt": "2026-09-03T06:25:28.938Z",
- "mode": "apply",
- "sourceVersion": "2026-fall",
- "summary": {
- "inserts": 17,
- "updates": 59,
- "moves": 7,
- "detaches": 9,
- "metadataUpdates": 10,
- "databaseDeletes": 0
- },
- "books": [
- {
- "miaoguoBookId": 13,
- "bookIdOld": 25,
- "label": "一年级上",
- "type": "ancient",
- "finalRows": 8,
- "titles": [
- "金木水火土",
- "江南",
- "雪地里的小画家",
- "对韵歌",
- "升国旗",
- "小小的船",
- "两件宝",
- "比尾巴"
- ]
- },
- {
- "miaoguoBookId": 15,
- "bookIdOld": 27,
- "label": "二年级上",
- "type": "ancient",
- "finalRows": 7,
- "titles": [
- "登鹳雀楼",
- "望庐山瀑布",
- "江雪",
- "敕勒歌",
- "田家四季歌",
- "树之歌",
- "日月潭(节选)"
- ]
- },
- {
- "miaoguoBookId": 17,
- "bookIdOld": 29,
- "label": "三年级上",
- "type": "ancient",
- "finalRows": 9,
- "titles": [
- "望洞庭",
- "山行",
- "夜书所见",
- "鹿柴",
- "望天门山",
- "饮湖上初晴后雨",
- "司马光",
- "秋天的雨(节选)",
- "大自然的声音(节选)"
- ]
- },
- {
- "miaoguoBookId": 19,
- "bookIdOld": 31,
- "label": "四年级上",
- "type": "ancient",
- "finalRows": 9,
- "titles": [
- "暮江吟",
- "题西林壁",
- "雪梅",
- "精卫填海",
- "凉州词",
- "出塞",
- "夏日绝句",
- "王戎不取道旁李",
- "观潮(节选)"
- ]
- },
- {
- "miaoguoBookId": 21,
- "bookIdOld": 33,
- "label": "五年级上",
- "type": "ancient",
- "finalRows": 10,
- "titles": [
- "示儿",
- "题临安邸",
- "己亥杂诗",
- "少年中国说(节选)",
- "山居秋暝",
- "枫桥夜泊",
- "早春呈水部张十八员外",
- "敏而好学",
- "读书有三到",
- "白鹭"
- ]
- },
- {
- "miaoguoBookId": 23,
- "bookIdOld": 35,
- "label": "六年级上",
- "type": "ancient",
- "finalRows": 10,
- "titles": [
- "宿建德江",
- "六月二十七日望湖楼醉书",
- "西江月·夜行黄沙道中",
- "七律·长征",
- "浪淘沙(其一)",
- "江南春",
- "书湖阴先生壁",
- "两小儿辩日",
- "曹冲称象",
- "少年闰土(节选)"
- ]
- },
- {
- "miaoguoBookId": 54,
- "bookIdOld": 74,
- "label": "一年级上",
- "type": "daily",
- "finalRows": 8,
- "titles": [
- "咏鹅",
- "画",
- "一模____ 一心____ 独一____\n十全____ 五颜____ 三头____",
- "悯农(其二)",
- "一年_______,一日_______。\n一寸_______,寸金_______。",
- "古朗月行(节选)",
- "种_______,种_______。\n前_______,后_______。\n千_______,始_______。\n百_______,更_______。",
- "风"
- ]
- },
- {
- "miaoguoBookId": 56,
- "bookIdOld": 76,
- "label": "二年级上",
- "type": "daily",
- "finalRows": 8,
- "titles": [
- "梅花",
- "数九歌",
- "小儿垂钓",
- "有_______,无_______ \n白_______,杏_______ \n清_______,近_______ \n雾_______,天_______",
- "黑_______,白_______。\n一_______,一_______。\n书_______,学_______。",
- "有_______ ——《后汉书》\n志_______ ——诸葛亮\n穷_______ ——王勃",
- "夜宿山寺",
- "己_______ ——《论语》\n与_______ ——《论语》\n不_______ ——《孟子》"
- ]
- },
- {
- "miaoguoBookId": 58,
- "bookIdOld": 78,
- "label": "三年级上",
- "type": "daily",
- "finalRows": 7,
- "titles": [
- "所见",
- "舟夜书所见",
- "不_______ ——《论语》\n爱_______ ——《墨子》\n仁_______ ——《孟子》\n与_______ ——《荀子》",
- "人_______,泰_______。 二_______,其_______。 三_______,顶_______。",
- "早发白帝城",
- "采莲曲",
- "士_______,任_______。——《论语》\n志_______,言_______。——《墨子》\n锲_______,朽_______;锲_______,金_______。——《荀子》"
- ]
- },
- {
- "miaoguoBookId": 60,
- "bookIdOld": 80,
- "label": "四年级上",
- "type": "daily",
- "finalRows": 7,
- "titles": [
- "赠刘景文",
- "博_______ ——《中庸》\n智_______ ——王充\n人_______ ——韩愈\n善_______ ——方以智",
- "立_______,_______\n二_______,_______\n夏_______,_______\n八_______,雁_______\n一_______,十_______\n八_______,十_______",
- "嫦娥",
- "黄鹤楼送孟浩然之广陵",
- "尺_______,_______。\n仁_______,_______。\n机_______,_______。\n差_______,_______。\n一_______,_______。\n知_______,_______。",
- "别董大"
- ]
- },
- {
- "miaoguoBookId": 62,
- "bookIdOld": 82,
- "label": "五年级上",
- "type": "daily",
- "finalRows": 7,
- "titles": [
- "卧_______ 龙_______ 龙_______ 凤_______\n如_______ 如_______ 鹤_______ 一_______\n鼠_______ 抱_______ 狼_______ 狼_______\n狡_______ 呆_______ 虾_______ 黔_______",
- "盛_______ ——陶渊明\n莫_______ ——岳飞\n多_______ ——毛泽东",
- "乞巧",
- "安_______ 国_______ 太_______ 丰_______\n政_______ 人_______ 夜_______ 路_______\n多_______ 流_______ 兵_______ 生_______\n家_______ 哀_______ 民_______ 内_______",
- "游子吟",
- "渔歌子",
- "观书有感(其一)"
- ]
- },
- {
- "miaoguoBookId": 64,
- "bookIdOld": 84,
- "label": "六年级上",
- "type": "daily",
- "finalRows": 7,
- "titles": [
- "江畔独步寻花",
- "志_______ ——《论语》\n捐_______ ——曹植\n祖_______ ——李纲\n位_______ ——陆游",
- "观书有感(其二)",
- "送元二使安西",
- "过故人庄",
- "五行:_______\n五谷:_______\n五音:_______\n五彩:_______",
- "无_______ ——鲁迅《答客诮》\n寄_______ ——鲁迅《自题小像》\n其_______ ——鲁迅《故乡》\n惟_______ ——鲁迅《学界的三魂》\n我_______ ——鲁迅《中国人失掉自信力了吗》"
- ]
- }
- ],
- "changes": [
- {
- "action": "insert",
- "bookIdOld": 25,
- "sort": 0,
- "title": "金木水火土"
- },
- {
- "action": "update",
- "id": 2,
- "fromBookIdOld": 25,
- "toBookIdOld": 25,
- "sort": 1,
- "fromTitle": "江南",
- "toTitle": "江南",
- "changedFields": [
- "Sort"
- ]
- },
- {
- "action": "insert",
- "bookIdOld": 25,
- "sort": 2,
- "title": "雪地里的小画家"
- },
- {
- "action": "insert",
- "bookIdOld": 25,
- "sort": 3,
- "title": "对韵歌"
- },
- {
- "action": "insert",
- "bookIdOld": 25,
- "sort": 4,
- "title": "升国旗"
- },
- {
- "action": "insert",
- "bookIdOld": 25,
- "sort": 5,
- "title": "小小的船"
- },
- {
- "action": "insert",
- "bookIdOld": 25,
- "sort": 6,
- "title": "两件宝"
- },
- {
- "action": "insert",
- "bookIdOld": 25,
- "sort": 7,
- "title": "比尾巴"
- },
- {
- "action": "update",
- "id": 17,
- "fromBookIdOld": 27,
- "toBookIdOld": 27,
- "sort": 1,
- "fromTitle": "望庐山瀑布",
- "toTitle": "望庐山瀑布",
- "changedFields": [
- "Sort"
- ]
- },
- {
- "action": "update",
- "id": 18,
- "fromBookIdOld": 27,
- "toBookIdOld": 27,
- "sort": 2,
- "fromTitle": "江雪",
- "toTitle": "江雪",
- "changedFields": [
- "Sort",
- "Tag"
- ]
- },
- {
- "action": "update",
- "id": 20,
- "fromBookIdOld": 27,
- "toBookIdOld": 27,
- "sort": 3,
- "fromTitle": "敕勒歌",
- "toTitle": "敕勒歌",
- "changedFields": [
- "Sort"
- ]
- },
- {
- "action": "insert",
- "bookIdOld": 27,
- "sort": 4,
- "title": "田家四季歌"
- },
- {
- "action": "insert",
- "bookIdOld": 27,
- "sort": 5,
- "title": "树之歌"
- },
- {
- "action": "insert",
- "bookIdOld": 27,
- "sort": 6,
- "title": "日月潭(节选)"
- },
- {
- "action": "update",
- "id": 31,
- "fromBookIdOld": 29,
- "toBookIdOld": 29,
- "sort": 2,
- "fromTitle": "夜书所见",
- "toTitle": "夜书所见",
- "changedFields": [
- "Sort"
- ]
- },
- {
- "action": "update",
- "id": 49,
- "fromBookIdOld": 29,
- "toBookIdOld": 29,
- "sort": 3,
- "fromTitle": "鹿柴",
- "toTitle": "鹿柴",
- "changedFields": [
- "Sort",
- "Tag"
- ]
- },
- {
- "action": "update",
- "id": 32,
- "fromBookIdOld": 29,
- "toBookIdOld": 29,
- "sort": 4,
- "fromTitle": "望天门山",
- "toTitle": "望天门山",
- "changedFields": [
- "Sort"
- ]
- },
- {
- "action": "update",
- "id": 33,
- "fromBookIdOld": 29,
- "toBookIdOld": 29,
- "sort": 5,
- "fromTitle": "饮湖上初晴后雨",
- "toTitle": "饮湖上初晴后雨",
- "changedFields": [
- "Sort"
- ]
- },
- {
- "action": "update",
- "id": 37,
- "fromBookIdOld": 29,
- "toBookIdOld": 29,
- "sort": 6,
- "fromTitle": "司马光砸缸",
- "toTitle": "司马光",
- "changedFields": [
- "Sort",
- "Title"
- ]
- },
- {
- "action": "insert",
- "bookIdOld": 29,
- "sort": 7,
- "title": "秋天的雨(节选)"
- },
- {
- "action": "insert",
- "bookIdOld": 29,
- "sort": 8,
- "title": "大自然的声音(节选)"
- },
- {
- "action": "update",
- "id": 51,
- "fromBookIdOld": 31,
- "toBookIdOld": 31,
- "sort": 1,
- "fromTitle": "题西林壁",
- "toTitle": "题西林壁",
- "changedFields": [
- "Sort"
- ]
- },
- {
- "action": "update",
- "id": 52,
- "fromBookIdOld": 31,
- "toBookIdOld": 31,
- "sort": 2,
- "fromTitle": "雪梅",
- "toTitle": "雪梅",
- "changedFields": [
- "Sort"
- ]
- },
- {
- "action": "update",
- "id": 53,
- "fromBookIdOld": 31,
- "toBookIdOld": 31,
- "sort": 3,
- "fromTitle": "精卫填海",
- "toTitle": "精卫填海",
- "changedFields": [
- "Sort"
- ]
- },
- {
- "action": "update",
- "id": 56,
- "fromBookIdOld": 31,
- "toBookIdOld": 31,
- "sort": 4,
- "fromTitle": "凉州词",
- "toTitle": "凉州词",
- "changedFields": [
- "Sort"
- ]
- },
- {
- "action": "update",
- "id": 55,
- "fromBookIdOld": 31,
- "toBookIdOld": 31,
- "sort": 5,
- "fromTitle": "出塞",
- "toTitle": "出塞",
- "changedFields": [
- "Sort"
- ]
- },
- {
- "action": "update",
- "id": 57,
- "fromBookIdOld": 31,
- "toBookIdOld": 31,
- "sort": 6,
- "fromTitle": "夏日绝句",
- "toTitle": "夏日绝句",
- "changedFields": [
- "Sort"
- ]
- },
- {
- "action": "update",
- "id": 59,
- "fromBookIdOld": 31,
- "toBookIdOld": 31,
- "sort": 7,
- "fromTitle": "王戎不取道旁李",
- "toTitle": "王戎不取道旁李",
- "changedFields": [
- "Sort"
- ]
- },
- {
- "action": "insert",
- "bookIdOld": 31,
- "sort": 8,
- "title": "观潮(节选)"
- },
- {
- "action": "update",
- "id": 74,
- "fromBookIdOld": 33,
- "toBookIdOld": 33,
- "sort": 1,
- "fromTitle": "题临安邸",
- "toTitle": "题临安邸",
- "changedFields": [
- "Sort"
- ]
- },
- {
- "action": "update",
- "id": 75,
- "fromBookIdOld": 33,
- "toBookIdOld": 33,
- "sort": 2,
- "fromTitle": "己亥杂诗",
- "toTitle": "己亥杂诗",
- "changedFields": [
- "Sort"
- ]
- },
- {
- "action": "update",
- "id": 76,
- "fromBookIdOld": 33,
- "toBookIdOld": 33,
- "sort": 3,
- "fromTitle": "少年中国说",
- "toTitle": "少年中国说(节选)",
- "changedFields": [
- "Sort",
- "Title",
- "PeomContent"
- ]
- },
- {
- "action": "update",
- "id": 77,
- "fromBookIdOld": 33,
- "toBookIdOld": 33,
- "sort": 4,
- "fromTitle": "山居秋暝",
- "toTitle": "山居秋暝",
- "changedFields": [
- "Sort"
- ]
- },
- {
- "action": "update",
- "id": 78,
- "fromBookIdOld": 33,
- "toBookIdOld": 33,
- "sort": 5,
- "fromTitle": "枫桥夜泊",
- "toTitle": "枫桥夜泊",
- "changedFields": [
- "Sort"
- ]
- },
- {
- "action": "move",
- "id": 123,
- "fromBookIdOld": 36,
- "toBookIdOld": 33,
- "sort": 6,
- "fromTitle": "早春呈水部张十八员外(其一)",
- "toTitle": "早春呈水部张十八员外",
- "changedFields": [
- "HanziBookID",
- "Sort",
- "Tag",
- "Title"
- ]
- },
- {
- "action": "update",
- "id": 81,
- "fromBookIdOld": 33,
- "toBookIdOld": 33,
- "sort": 7,
- "fromTitle": "敏而好学",
- "toTitle": "敏而好学",
- "changedFields": [
- "Sort",
- "PeomContent"
- ]
- },
- {
- "action": "update",
- "id": 82,
- "fromBookIdOld": 33,
- "toBookIdOld": 33,
- "sort": 8,
- "fromTitle": "读书有三到",
- "toTitle": "读书有三到",
- "changedFields": [
- "Sort"
- ]
- },
- {
- "action": "insert",
- "bookIdOld": 33,
- "sort": 9,
- "title": "白鹭"
- },
- {
- "action": "update",
- "id": 100,
- "fromBookIdOld": 35,
- "toBookIdOld": 35,
- "sort": 1,
- "fromTitle": "六月二十七日望湖楼醉书",
- "toTitle": "六月二十七日望湖楼醉书",
- "changedFields": [
- "Sort"
- ]
- },
- {
- "action": "update",
- "id": 101,
- "fromBookIdOld": 35,
- "toBookIdOld": 35,
- "sort": 2,
- "fromTitle": "西江月·夜行黄沙道中",
- "toTitle": "西江月·夜行黄沙道中",
- "changedFields": [
- "Sort"
- ]
- },
- {
- "action": "update",
- "id": 103,
- "fromBookIdOld": 35,
- "toBookIdOld": 35,
- "sort": 3,
- "fromTitle": "七律·长征",
- "toTitle": "七律·长征",
- "changedFields": [
- "Sort"
- ]
- },
- {
- "action": "update",
- "id": 106,
- "fromBookIdOld": 35,
- "toBookIdOld": 35,
- "sort": 4,
- "fromTitle": "浪淘沙·九曲黄河万里沙",
- "toTitle": "浪淘沙(其一)",
- "changedFields": [
- "Sort",
- "Title"
- ]
- },
- {
- "action": "update",
- "id": 107,
- "fromBookIdOld": 35,
- "toBookIdOld": 35,
- "sort": 5,
- "fromTitle": "江南春",
- "toTitle": "江南春",
- "changedFields": [
- "Sort"
- ]
- },
- {
- "action": "update",
- "id": 108,
- "fromBookIdOld": 35,
- "toBookIdOld": 35,
- "sort": 6,
- "fromTitle": "书湖阴先生壁",
- "toTitle": "书湖阴先生壁",
- "changedFields": [
- "Sort"
- ]
- },
- {
- "action": "move",
- "id": 119,
- "fromBookIdOld": 36,
- "toBookIdOld": 35,
- "sort": 7,
- "fromTitle": "两小儿辩日",
- "toTitle": "两小儿辩日",
- "changedFields": [
- "HanziBookID",
- "Tag",
- "PeomContent"
- ]
- },
- {
- "action": "insert",
- "bookIdOld": 35,
- "sort": 8,
- "title": "曹冲称象"
- },
- {
- "action": "insert",
- "bookIdOld": 35,
- "sort": 9,
- "title": "少年闰土(节选)"
- },
- {
- "action": "update",
- "id": 266,
- "fromBookIdOld": 74,
- "toBookIdOld": 74,
- "sort": 2,
- "fromTitle": "一模____ 一心____ 独一____ 三头____ 五颜____ 十全____",
- "toTitle": "一模____ 一心____ 独一____\n十全____ 五颜____ 三头____",
- "changedFields": [
- "Sort",
- "Title",
- "PeomContent"
- ]
- },
- {
- "action": "update",
- "id": 4,
- "fromBookIdOld": 74,
- "toBookIdOld": 74,
- "sort": 3,
- "fromTitle": "悯农(其二)",
- "toTitle": "悯农(其二)",
- "changedFields": [
- "Sort"
- ]
- },
- {
- "action": "update",
- "id": 240,
- "fromBookIdOld": 74,
- "toBookIdOld": 74,
- "sort": 4,
- "fromTitle": "一年_______,一日_______。\n一寸_______,寸金_______。",
- "toTitle": "一年_______,一日_______。\n一寸_______,寸金_______。",
- "changedFields": [
- "Sort"
- ]
- },
- {
- "action": "update",
- "id": 5,
- "fromBookIdOld": 74,
- "toBookIdOld": 74,
- "sort": 5,
- "fromTitle": "古朗月行",
- "toTitle": "古朗月行(节选)",
- "changedFields": [
- "Sort",
- "Title"
- ]
- },
- {
- "action": "update",
- "id": 241,
- "fromBookIdOld": 74,
- "toBookIdOld": 74,
- "sort": 6,
- "fromTitle": "种_______,种_______。\n前_______,后_______。\n千_______,始_______。\n百_______,更_______。",
- "toTitle": "种_______,种_______。\n前_______,后_______。\n千_______,始_______。\n百_______,更_______。",
- "changedFields": [
- "Sort"
- ]
- },
- {
- "action": "update",
- "id": 6,
- "fromBookIdOld": 74,
- "toBookIdOld": 74,
- "sort": 7,
- "fromTitle": "风",
- "toTitle": "风",
- "changedFields": [
- "Sort"
- ]
- },
- {
- "action": "move",
- "id": 14,
- "fromBookIdOld": 0,
- "toBookIdOld": 76,
- "sort": 0,
- "fromTitle": "梅花",
- "toTitle": "梅花",
- "changedFields": [
- "HanziBookID"
- ]
- },
- {
- "action": "update",
- "id": 224,
- "fromBookIdOld": 76,
- "toBookIdOld": 76,
- "sort": 1,
- "fromTitle": "数九歌",
- "toTitle": "数九歌",
- "changedFields": [
- "Sort",
- "PeomContent"
- ]
- },
- {
- "action": "update",
- "id": 15,
- "fromBookIdOld": 76,
- "toBookIdOld": 76,
- "sort": 2,
- "fromTitle": "小儿垂钓",
- "toTitle": "小儿垂钓",
- "changedFields": [
- "Sort"
- ]
- },
- {
- "action": "update",
- "id": 222,
- "fromBookIdOld": 76,
- "toBookIdOld": 76,
- "sort": 3,
- "fromTitle": "有_______,无_______ \n白_______,杏_______ \n清_______,近_______ \n雾_______,天_______",
- "toTitle": "有_______,无_______ \n白_______,杏_______ \n清_______,近_______ \n雾_______,天_______",
- "changedFields": [
- "Sort"
- ]
- },
- {
- "action": "update",
- "id": 225,
- "fromBookIdOld": 76,
- "toBookIdOld": 76,
- "sort": 4,
- "fromTitle": "少_______,老_______。\n一_______,一_______。\n书_______,学_______。",
- "toTitle": "黑_______,白_______。\n一_______,一_______。\n书_______,学_______。",
- "changedFields": [
- "Sort",
- "Tag",
- "Title",
- "PeomContent"
- ]
- },
- {
- "action": "update",
- "id": 223,
- "fromBookIdOld": 76,
- "toBookIdOld": 76,
- "sort": 5,
- "fromTitle": "有_______ ——《后汉书》\n志_______ ——诸葛亮\n穷_______ ——王勃",
- "toTitle": "有_______ ——《后汉书》\n志_______ ——诸葛亮\n穷_______ ——王勃",
- "changedFields": [
- "Sort"
- ]
- },
- {
- "action": "update",
- "id": 19,
- "fromBookIdOld": 76,
- "toBookIdOld": 76,
- "sort": 6,
- "fromTitle": "夜宿山寺",
- "toTitle": "夜宿山寺",
- "changedFields": [
- "Sort",
- "Tag"
- ]
- },
- {
- "action": "update",
- "id": 221,
- "fromBookIdOld": 76,
- "toBookIdOld": 76,
- "sort": 7,
- "fromTitle": "己_______ ——《论语》\n与_______ ——《论语》\n不_______ ——《孟子》",
- "toTitle": "己_______ ——《论语》\n与_______ ——《论语》\n不_______ ——《孟子》",
- "changedFields": [
- "Sort"
- ]
- },
- {
- "action": "update",
- "id": 28,
- "fromBookIdOld": 78,
- "toBookIdOld": 78,
- "sort": 0,
- "fromTitle": "所见",
- "toTitle": "所见",
- "changedFields": [
- "Sort"
- ]
- },
- {
- "action": "update",
- "id": 27,
- "fromBookIdOld": 78,
- "toBookIdOld": 78,
- "sort": 1,
- "fromTitle": "舟夜书所见",
- "toTitle": "舟夜书所见",
- "changedFields": [
- "Sort"
- ]
- },
- {
- "action": "update",
- "id": 228,
- "fromBookIdOld": 78,
- "toBookIdOld": 78,
- "sort": 2,
- "fromTitle": "不_______ ——《论语》\n爱_______ ——《墨子》\n仁_______ ——《孟子》\n与_______ ——《荀子》",
- "toTitle": "不_______ ——《论语》\n爱_______ ——《墨子》\n仁_______ ——《孟子》\n与_______ ——《荀子》",
- "changedFields": [
- "Sort"
- ]
- },
- {
- "action": "update",
- "id": 242,
- "fromBookIdOld": 78,
- "toBookIdOld": 78,
- "sort": 3,
- "fromTitle": "人_______,泰_______。 二_______,其_______。 三_______,顶_______。",
- "toTitle": "人_______,泰_______。 二_______,其_______。 三_______,顶_______。",
- "changedFields": [
- "Sort"
- ]
- },
- {
- "action": "update",
- "id": 35,
- "fromBookIdOld": 78,
- "toBookIdOld": 78,
- "sort": 4,
- "fromTitle": "早发白帝城",
- "toTitle": "早发白帝城",
- "changedFields": [
- "Sort"
- ]
- },
- {
- "action": "update",
- "id": 36,
- "fromBookIdOld": 78,
- "toBookIdOld": 78,
- "sort": 5,
- "fromTitle": "采莲曲",
- "toTitle": "采莲曲",
- "changedFields": [
- "Sort"
- ]
- },
- {
- "action": "update",
- "id": 267,
- "fromBookIdOld": 78,
- "toBookIdOld": 78,
- "sort": 6,
- "fromTitle": "士_______,任_______ ——《论语》 志_______,言_______ ——《墨子》 锲_______,朽_______。锲_______,金_______。 ——《荀子》",
- "toTitle": "士_______,任_______。——《论语》\n志_______,言_______。——《墨子》\n锲_______,朽_______;锲_______,金_______。——《荀子》",
- "changedFields": [
- "Sort",
- "Title",
- "PeomContent"
- ]
- },
- {
- "action": "update",
- "id": 229,
- "fromBookIdOld": 80,
- "toBookIdOld": 80,
- "sort": 1,
- "fromTitle": "博_______ ——《礼记》 智_______ ——王充 人_______ ——韩愈 善_______ ——方以智",
- "toTitle": "博_______ ——《中庸》\n智_______ ——王充\n人_______ ——韩愈\n善_______ ——方以智",
- "changedFields": [
- "Title",
- "PeomContent"
- ]
- },
- {
- "action": "update",
- "id": 230,
- "fromBookIdOld": 80,
- "toBookIdOld": 80,
- "sort": 2,
- "fromTitle": "立_______,_______\n二_______,_______\n夏_______,_______\n八_______,雁_______\n一_______,十_______\n八_______,十_______",
- "toTitle": "立_______,_______\n二_______,_______\n夏_______,_______\n八_______,雁_______\n一_______,十_______\n八_______,十_______",
- "changedFields": [
- "PeomContent"
- ]
- },
- {
- "action": "update",
- "id": 231,
- "fromBookIdOld": 80,
- "toBookIdOld": 80,
- "sort": 5,
- "fromTitle": "尺_______,_______\n机_______,_______\n差_______,_______\n病_______,_______\n一_______,_______\n比_______,_______",
- "toTitle": "尺_______,_______。\n仁_______,_______。\n机_______,_______。\n差_______,_______。\n一_______,_______。\n知_______,_______。",
- "changedFields": [
- "Tag",
- "Title",
- "PeomContent"
- ]
- },
- {
- "action": "insert",
- "bookIdOld": 82,
- "sort": 0,
- "title": "卧_______ 龙_______ 龙_______ 凤_______\n如_______ 如_______ 鹤_______ 一_______\n鼠_______ 抱_______ 狼_______ 狼_______\n狡_______ 呆_______ 虾_______ 黔_______"
- },
- {
- "action": "update",
- "id": 233,
- "fromBookIdOld": 82,
- "toBookIdOld": 82,
- "sort": 1,
- "fromTitle": "不_______ ——葛洪\n盛_______ ——陶渊明\n莫_______ ——岳飞\n多_______ ——毛泽东",
- "toTitle": "盛_______ ——陶渊明\n莫_______ ——岳飞\n多_______ ——毛泽东",
- "changedFields": [
- "Title",
- "PeomContent"
- ]
- },
- {
- "action": "update",
- "id": 234,
- "fromBookIdOld": 82,
- "toBookIdOld": 82,
- "sort": 3,
- "fromTitle": "太_______ 国_______\n丰_______ 安_______\n政_______ 人_______\n夜_______ 路_______\n多_______ 兵_______\n流_______ 生_______\n家_______ 哀_______\n民_______ 内_______",
- "toTitle": "安_______ 国_______ 太_______ 丰_______\n政_______ 人_______ 夜_______ 路_______\n多_______ 流_______ 兵_______ 生_______\n家_______ 哀_______ 民_______ 内_______",
- "changedFields": [
- "Title",
- "PeomContent"
- ]
- },
- {
- "action": "move",
- "id": 114,
- "fromBookIdOld": 83,
- "toBookIdOld": 82,
- "sort": 4,
- "fromTitle": "游子吟",
- "toTitle": "游子吟",
- "changedFields": [
- "HanziBookID",
- "Sort",
- "Tag"
- ]
- },
- {
- "action": "update",
- "id": 84,
- "fromBookIdOld": 82,
- "toBookIdOld": 82,
- "sort": 6,
- "fromTitle": "观书有感二首·其一",
- "toTitle": "观书有感(其一)",
- "changedFields": [
- "Title"
- ]
- },
- {
- "action": "move",
- "id": 122,
- "fromBookIdOld": 81,
- "toBookIdOld": 84,
- "sort": 0,
- "fromTitle": "江畔独步寻花",
- "toTitle": "江畔独步寻花",
- "changedFields": [
- "HanziBookID",
- "Sort",
- "Tag"
- ]
- },
- {
- "action": "update",
- "id": 236,
- "fromBookIdOld": 84,
- "toBookIdOld": 84,
- "sort": 1,
- "fromTitle": "捐_______ ——曹植\n祖_______ ——李纲\n位_______ ——陆游",
- "toTitle": "志_______ ——《论语》\n捐_______ ——曹植\n祖_______ ——李纲\n位_______ ——陆游",
- "changedFields": [
- "Title",
- "PeomContent"
- ]
- },
- {
- "action": "move",
- "id": 85,
- "fromBookIdOld": 82,
- "toBookIdOld": 84,
- "sort": 2,
- "fromTitle": "观书有感二首·其二",
- "toTitle": "观书有感(其二)",
- "changedFields": [
- "HanziBookID",
- "Sort",
- "Tag",
- "Title"
- ]
- },
- {
- "action": "move",
- "id": 92,
- "fromBookIdOld": 36,
- "toBookIdOld": 84,
- "sort": 3,
- "fromTitle": "送元二使安西",
- "toTitle": "送元二使安西",
- "changedFields": [
- "HanziBookID",
- "Sort",
- "Tag"
- ]
- },
- {
- "action": "update",
- "id": 102,
- "fromBookIdOld": 84,
- "toBookIdOld": 84,
- "sort": 4,
- "fromTitle": "过故人庄",
- "toTitle": "过故人庄",
- "changedFields": [
- "Sort"
- ]
- },
- {
- "action": "update",
- "id": 237,
- "fromBookIdOld": 84,
- "toBookIdOld": 84,
- "sort": 5,
- "fromTitle": "五行:_______\n五谷:_______\n五音:_______\n五彩:_______",
- "toTitle": "五行:_______\n五谷:_______\n五音:_______\n五彩:_______",
- "changedFields": [
- "Sort"
- ]
- },
- {
- "action": "update",
- "id": 239,
- "fromBookIdOld": 84,
- "toBookIdOld": 84,
- "sort": 6,
- "fromTitle": "无_______ ——鲁迅《答客诮》\n其_______ ——鲁迅《故乡》\n惟_______ ——鲁迅《学界的三魂》\n我_______ ——鲁迅《中国人失掉自信力了吗》",
- "toTitle": "无_______ ——鲁迅《答客诮》\n寄_______ ——鲁迅《自题小像》\n其_______ ——鲁迅《故乡》\n惟_______ ——鲁迅《学界的三魂》\n我_______ ——鲁迅《中国人失掉自信力了吗》",
- "changedFields": [
- "Title",
- "PeomContent"
- ]
- },
- {
- "action": "detach",
- "id": 79,
- "fromBookIdOld": 33,
- "toBookIdOld": 0,
- "title": "长相思",
- "changedFields": [
- "HanziBookID"
- ]
- },
- {
- "action": "detach",
- "id": 83,
- "fromBookIdOld": 33,
- "toBookIdOld": 0,
- "title": "士人读书",
- "changedFields": [
- "HanziBookID"
- ]
- },
- {
- "action": "detach",
- "id": 109,
- "fromBookIdOld": 35,
- "toBookIdOld": 0,
- "title": "伯牙鼓琴",
- "changedFields": [
- "HanziBookID"
- ]
- },
- {
- "action": "detach",
- "id": 110,
- "fromBookIdOld": 35,
- "toBookIdOld": 0,
- "title": "书戴嵩画牛",
- "changedFields": [
- "HanziBookID"
- ]
- },
- {
- "action": "detach",
- "id": 71,
- "fromBookIdOld": 82,
- "toBookIdOld": 0,
- "title": "蝉",
- "changedFields": [
- "HanziBookID"
- ]
- },
- {
- "action": "detach",
- "id": 235,
- "fromBookIdOld": 82,
- "toBookIdOld": 0,
- "title": "克_______ ——《尚书》\n居_______ ——魏征\n由_______ ——司马光\n一_______ ——朱用纯",
- "changedFields": [
- "HanziBookID"
- ]
- },
- {
- "action": "detach",
- "id": 104,
- "fromBookIdOld": 84,
- "toBookIdOld": 0,
- "title": "春日",
- "changedFields": [
- "HanziBookID"
- ]
- },
- {
- "action": "detach",
- "id": 105,
- "fromBookIdOld": 84,
- "toBookIdOld": 0,
- "title": "回乡偶书",
- "changedFields": [
- "HanziBookID"
- ]
- },
- {
- "action": "detach",
- "id": 238,
- "fromBookIdOld": 84,
- "toBookIdOld": 0,
- "title": "高_______ 天_______\n余_______ 黄_______\n轻_______ 行_______\n巧_______ 惟_______\n画_______ 笔_______\n妙_______ 栩_______",
- "changedFields": [
- "HanziBookID"
- ]
- }
- ],
- "metadataChanges": [
- {
- "miaoguoBookId": 13,
- "bookIdOld": 25,
- "from": {
- "unitNum": 1,
- "wordNum": 1
- },
- "to": {
- "unitNum": 1,
- "wordNum": 8
- },
- "changed": true
- },
- {
- "miaoguoBookId": 15,
- "bookIdOld": 27,
- "from": {
- "unitNum": 1,
- "wordNum": 4
- },
- "to": {
- "unitNum": 1,
- "wordNum": 7
- },
- "changed": true
- },
- {
- "miaoguoBookId": 17,
- "bookIdOld": 29,
- "from": {
- "unitNum": 1,
- "wordNum": 7
- },
- "to": {
- "unitNum": 1,
- "wordNum": 9
- },
- "changed": true
- },
- {
- "miaoguoBookId": 19,
- "bookIdOld": 31,
- "from": {
- "unitNum": 1,
- "wordNum": 8
- },
- "to": {
- "unitNum": 1,
- "wordNum": 9
- },
- "changed": true
- },
- {
- "miaoguoBookId": 21,
- "bookIdOld": 33,
- "from": {
- "unitNum": 1,
- "wordNum": 9
- },
- "to": {
- "unitNum": 1,
- "wordNum": 10
- },
- "changed": true
- },
- {
- "miaoguoBookId": 23,
- "bookIdOld": 35,
- "from": {
- "unitNum": 1,
- "wordNum": 9
- },
- "to": {
- "unitNum": 1,
- "wordNum": 10
- },
- "changed": true
- },
- {
- "miaoguoBookId": 24,
- "bookIdOld": 36,
- "from": {
- "unitNum": 1,
- "wordNum": 18
- },
- "to": {
- "unitNum": 1,
- "wordNum": 15
- },
- "changed": true
- },
- {
- "miaoguoBookId": 54,
- "bookIdOld": 74,
- "from": {
- "unitNum": 1,
- "wordNum": 8
- },
- "to": {
- "unitNum": 1,
- "wordNum": 8
- },
- "changed": false
- },
- {
- "miaoguoBookId": 56,
- "bookIdOld": 76,
- "from": {
- "unitNum": 1,
- "wordNum": 8
- },
- "to": {
- "unitNum": 1,
- "wordNum": 8
- },
- "changed": false
- },
- {
- "miaoguoBookId": 58,
- "bookIdOld": 78,
- "from": {
- "unitNum": 1,
- "wordNum": 7
- },
- "to": {
- "unitNum": 1,
- "wordNum": 7
- },
- "changed": false
- },
- {
- "miaoguoBookId": 60,
- "bookIdOld": 80,
- "from": {
- "unitNum": 1,
- "wordNum": 7
- },
- "to": {
- "unitNum": 1,
- "wordNum": 7
- },
- "changed": false
- },
- {
- "miaoguoBookId": 61,
- "bookIdOld": 81,
- "from": {
- "unitNum": 1,
- "wordNum": 7
- },
- "to": {
- "unitNum": 1,
- "wordNum": 6
- },
- "changed": true
- },
- {
- "miaoguoBookId": 62,
- "bookIdOld": 82,
- "from": {
- "unitNum": 1,
- "wordNum": 8
- },
- "to": {
- "unitNum": 1,
- "wordNum": 7
- },
- "changed": true
- },
- {
- "miaoguoBookId": 63,
- "bookIdOld": 83,
- "from": {
- "unitNum": 1,
- "wordNum": 7
- },
- "to": {
- "unitNum": 1,
- "wordNum": 5
- },
- "changed": true
- },
- {
- "miaoguoBookId": 64,
- "bookIdOld": 84,
- "from": {
- "unitNum": 1,
- "wordNum": 7
- },
- "to": {
- "unitNum": 1,
- "wordNum": 7
- },
- "changed": false
- }
- ]
- },
- "applied": {
- "inserted": [
- {
- "id": 275,
- "bookIdOld": 25,
- "title": "金木水火土"
- },
- {
- "id": 276,
- "bookIdOld": 25,
- "title": "雪地里的小画家"
- },
- {
- "id": 277,
- "bookIdOld": 25,
- "title": "对韵歌"
- },
- {
- "id": 278,
- "bookIdOld": 25,
- "title": "升国旗"
- },
- {
- "id": 279,
- "bookIdOld": 25,
- "title": "小小的船"
- },
- {
- "id": 280,
- "bookIdOld": 25,
- "title": "两件宝"
- },
- {
- "id": 281,
- "bookIdOld": 25,
- "title": "比尾巴"
- },
- {
- "id": 282,
- "bookIdOld": 27,
- "title": "田家四季歌"
- },
- {
- "id": 283,
- "bookIdOld": 27,
- "title": "树之歌"
- },
- {
- "id": 284,
- "bookIdOld": 27,
- "title": "日月潭(节选)"
- },
- {
- "id": 285,
- "bookIdOld": 29,
- "title": "秋天的雨(节选)"
- },
- {
- "id": 286,
- "bookIdOld": 29,
- "title": "大自然的声音(节选)"
- },
- {
- "id": 287,
- "bookIdOld": 31,
- "title": "观潮(节选)"
- },
- {
- "id": 288,
- "bookIdOld": 33,
- "title": "白鹭"
- },
- {
- "id": 289,
- "bookIdOld": 35,
- "title": "曹冲称象"
- },
- {
- "id": 290,
- "bookIdOld": 35,
- "title": "少年闰土(节选)"
- },
- {
- "id": 291,
- "bookIdOld": 82,
- "title": "卧_______ 龙_______ 龙_______ 凤_______\n如_______ 如_______ 鹤_______ 一_______\n鼠_______ 抱_______ 狼_______ 狼_______\n狡_______ 呆_______ 虾_______ 黔_______"
- }
- ],
- "updated": [
- 2,
- 16,
- 17,
- 18,
- 20,
- 34,
- 29,
- 31,
- 49,
- 32,
- 33,
- 37,
- 50,
- 51,
- 52,
- 53,
- 56,
- 55,
- 57,
- 59,
- 73,
- 74,
- 75,
- 76,
- 77,
- 78,
- 123,
- 81,
- 82,
- 99,
- 100,
- 101,
- 103,
- 106,
- 107,
- 108,
- 119,
- 1,
- 3,
- 266,
- 4,
- 240,
- 5,
- 241,
- 6,
- 14,
- 224,
- 15,
- 222,
- 225,
- 223,
- 19,
- 221,
- 28,
- 27,
- 228,
- 242,
- 35,
- 36,
- 267,
- 30,
- 229,
- 230,
- 54,
- 94,
- 231,
- 58,
- 233,
- 72,
- 234,
- 114,
- 80,
- 84,
- 122,
- 236,
- 85,
- 92,
- 102,
- 237,
- 239
- ],
- "detached": [
- 79,
- 83,
- 109,
- 110,
- 71,
- 235,
- 104,
- 105,
- 238
- ]
- },
- "audit": {
- "generatedAt": "2026-09-03T06:25:30.188Z",
- "sourceVersion": "2026-fall",
- "ok": true,
- "failures": [],
- "books": [
- {
- "miaoguoBookId": 13,
- "bookIdOld": 25,
- "label": "一年级上",
- "type": "ancient",
- "rows": 8,
- "checked": [
- {
- "id": 275,
- "sort": 0,
- "title": "金木水火土"
- },
- {
- "id": 2,
- "sort": 1,
- "title": "江南"
- },
- {
- "id": 276,
- "sort": 2,
- "title": "雪地里的小画家"
- },
- {
- "id": 277,
- "sort": 3,
- "title": "对韵歌"
- },
- {
- "id": 278,
- "sort": 4,
- "title": "升国旗"
- },
- {
- "id": 279,
- "sort": 5,
- "title": "小小的船"
- },
- {
- "id": 280,
- "sort": 6,
- "title": "两件宝"
- },
- {
- "id": 281,
- "sort": 7,
- "title": "比尾巴"
- }
- ]
- },
- {
- "miaoguoBookId": 15,
- "bookIdOld": 27,
- "label": "二年级上",
- "type": "ancient",
- "rows": 7,
- "checked": [
- {
- "id": 16,
- "sort": 0,
- "title": "登鹳雀楼"
- },
- {
- "id": 17,
- "sort": 1,
- "title": "望庐山瀑布"
- },
- {
- "id": 18,
- "sort": 2,
- "title": "江雪"
- },
- {
- "id": 20,
- "sort": 3,
- "title": "敕勒歌"
- },
- {
- "id": 282,
- "sort": 4,
- "title": "田家四季歌"
- },
- {
- "id": 283,
- "sort": 5,
- "title": "树之歌"
- },
- {
- "id": 284,
- "sort": 6,
- "title": "日月潭(节选)"
- }
- ]
- },
- {
- "miaoguoBookId": 17,
- "bookIdOld": 29,
- "label": "三年级上",
- "type": "ancient",
- "rows": 9,
- "checked": [
- {
- "id": 34,
- "sort": 0,
- "title": "望洞庭"
- },
- {
- "id": 29,
- "sort": 1,
- "title": "山行"
- },
- {
- "id": 31,
- "sort": 2,
- "title": "夜书所见"
- },
- {
- "id": 49,
- "sort": 3,
- "title": "鹿柴"
- },
- {
- "id": 32,
- "sort": 4,
- "title": "望天门山"
- },
- {
- "id": 33,
- "sort": 5,
- "title": "饮湖上初晴后雨"
- },
- {
- "id": 37,
- "sort": 6,
- "title": "司马光"
- },
- {
- "id": 285,
- "sort": 7,
- "title": "秋天的雨(节选)"
- },
- {
- "id": 286,
- "sort": 8,
- "title": "大自然的声音(节选)"
- }
- ]
- },
- {
- "miaoguoBookId": 19,
- "bookIdOld": 31,
- "label": "四年级上",
- "type": "ancient",
- "rows": 9,
- "checked": [
- {
- "id": 50,
- "sort": 0,
- "title": "暮江吟"
- },
- {
- "id": 51,
- "sort": 1,
- "title": "题西林壁"
- },
- {
- "id": 52,
- "sort": 2,
- "title": "雪梅"
- },
- {
- "id": 53,
- "sort": 3,
- "title": "精卫填海"
- },
- {
- "id": 56,
- "sort": 4,
- "title": "凉州词"
- },
- {
- "id": 55,
- "sort": 5,
- "title": "出塞"
- },
- {
- "id": 57,
- "sort": 6,
- "title": "夏日绝句"
- },
- {
- "id": 59,
- "sort": 7,
- "title": "王戎不取道旁李"
- },
- {
- "id": 287,
- "sort": 8,
- "title": "观潮(节选)"
- }
- ]
- },
- {
- "miaoguoBookId": 21,
- "bookIdOld": 33,
- "label": "五年级上",
- "type": "ancient",
- "rows": 10,
- "checked": [
- {
- "id": 73,
- "sort": 0,
- "title": "示儿"
- },
- {
- "id": 74,
- "sort": 1,
- "title": "题临安邸"
- },
- {
- "id": 75,
- "sort": 2,
- "title": "己亥杂诗"
- },
- {
- "id": 76,
- "sort": 3,
- "title": "少年中国说(节选)"
- },
- {
- "id": 77,
- "sort": 4,
- "title": "山居秋暝"
- },
- {
- "id": 78,
- "sort": 5,
- "title": "枫桥夜泊"
- },
- {
- "id": 123,
- "sort": 6,
- "title": "早春呈水部张十八员外"
- },
- {
- "id": 81,
- "sort": 7,
- "title": "敏而好学"
- },
- {
- "id": 82,
- "sort": 8,
- "title": "读书有三到"
- },
- {
- "id": 288,
- "sort": 9,
- "title": "白鹭"
- }
- ]
- },
- {
- "miaoguoBookId": 23,
- "bookIdOld": 35,
- "label": "六年级上",
- "type": "ancient",
- "rows": 10,
- "checked": [
- {
- "id": 99,
- "sort": 0,
- "title": "宿建德江"
- },
- {
- "id": 100,
- "sort": 1,
- "title": "六月二十七日望湖楼醉书"
- },
- {
- "id": 101,
- "sort": 2,
- "title": "西江月·夜行黄沙道中"
- },
- {
- "id": 103,
- "sort": 3,
- "title": "七律·长征"
- },
- {
- "id": 106,
- "sort": 4,
- "title": "浪淘沙(其一)"
- },
- {
- "id": 107,
- "sort": 5,
- "title": "江南春"
- },
- {
- "id": 108,
- "sort": 6,
- "title": "书湖阴先生壁"
- },
- {
- "id": 119,
- "sort": 7,
- "title": "两小儿辩日"
- },
- {
- "id": 289,
- "sort": 8,
- "title": "曹冲称象"
- },
- {
- "id": 290,
- "sort": 9,
- "title": "少年闰土(节选)"
- }
- ]
- },
- {
- "miaoguoBookId": 54,
- "bookIdOld": 74,
- "label": "一年级上",
- "type": "daily",
- "rows": 8,
- "checked": [
- {
- "id": 1,
- "sort": 0,
- "title": "咏鹅"
- },
- {
- "id": 3,
- "sort": 1,
- "title": "画"
- },
- {
- "id": 266,
- "sort": 2,
- "title": "一模____ 一心____ 独一____\n十全____ 五颜____ 三头____"
- },
- {
- "id": 4,
- "sort": 3,
- "title": "悯农(其二)"
- },
- {
- "id": 240,
- "sort": 4,
- "title": "一年_______,一日_______。\n一寸_______,寸金_______。"
- },
- {
- "id": 5,
- "sort": 5,
- "title": "古朗月行(节选)"
- },
- {
- "id": 241,
- "sort": 6,
- "title": "种_______,种_______。\n前_______,后_______。\n千_______,始_______。\n百_______,更_______。"
- },
- {
- "id": 6,
- "sort": 7,
- "title": "风"
- }
- ]
- },
- {
- "miaoguoBookId": 56,
- "bookIdOld": 76,
- "label": "二年级上",
- "type": "daily",
- "rows": 8,
- "checked": [
- {
- "id": 14,
- "sort": 0,
- "title": "梅花"
- },
- {
- "id": 224,
- "sort": 1,
- "title": "数九歌"
- },
- {
- "id": 15,
- "sort": 2,
- "title": "小儿垂钓"
- },
- {
- "id": 222,
- "sort": 3,
- "title": "有_______,无_______ \n白_______,杏_______ \n清_______,近_______ \n雾_______,天_______"
- },
- {
- "id": 225,
- "sort": 4,
- "title": "黑_______,白_______。\n一_______,一_______。\n书_______,学_______。"
- },
- {
- "id": 223,
- "sort": 5,
- "title": "有_______ ——《后汉书》\n志_______ ——诸葛亮\n穷_______ ——王勃"
- },
- {
- "id": 19,
- "sort": 6,
- "title": "夜宿山寺"
- },
- {
- "id": 221,
- "sort": 7,
- "title": "己_______ ——《论语》\n与_______ ——《论语》\n不_______ ——《孟子》"
- }
- ]
- },
- {
- "miaoguoBookId": 58,
- "bookIdOld": 78,
- "label": "三年级上",
- "type": "daily",
- "rows": 7,
- "checked": [
- {
- "id": 28,
- "sort": 0,
- "title": "所见"
- },
- {
- "id": 27,
- "sort": 1,
- "title": "舟夜书所见"
- },
- {
- "id": 228,
- "sort": 2,
- "title": "不_______ ——《论语》\n爱_______ ——《墨子》\n仁_______ ——《孟子》\n与_______ ——《荀子》"
- },
- {
- "id": 242,
- "sort": 3,
- "title": "人_______,泰_______。 二_______,其_______。 三_______,顶_______。"
- },
- {
- "id": 35,
- "sort": 4,
- "title": "早发白帝城"
- },
- {
- "id": 36,
- "sort": 5,
- "title": "采莲曲"
- },
- {
- "id": 267,
- "sort": 6,
- "title": "士_______,任_______。——《论语》\n志_______,言_______。——《墨子》\n锲_______,朽_______;锲_______,金_______。——《荀子》"
- }
- ]
- },
- {
- "miaoguoBookId": 60,
- "bookIdOld": 80,
- "label": "四年级上",
- "type": "daily",
- "rows": 7,
- "checked": [
- {
- "id": 30,
- "sort": 0,
- "title": "赠刘景文"
- },
- {
- "id": 229,
- "sort": 1,
- "title": "博_______ ——《中庸》\n智_______ ——王充\n人_______ ——韩愈\n善_______ ——方以智"
- },
- {
- "id": 230,
- "sort": 2,
- "title": "立_______,_______\n二_______,_______\n夏_______,_______\n八_______,雁_______\n一_______,十_______\n八_______,十_______"
- },
- {
- "id": 54,
- "sort": 3,
- "title": "嫦娥"
- },
- {
- "id": 94,
- "sort": 4,
- "title": "黄鹤楼送孟浩然之广陵"
- },
- {
- "id": 231,
- "sort": 5,
- "title": "尺_______,_______。\n仁_______,_______。\n机_______,_______。\n差_______,_______。\n一_______,_______。\n知_______,_______。"
- },
- {
- "id": 58,
- "sort": 6,
- "title": "别董大"
- }
- ]
- },
- {
- "miaoguoBookId": 62,
- "bookIdOld": 82,
- "label": "五年级上",
- "type": "daily",
- "rows": 7,
- "checked": [
- {
- "id": 291,
- "sort": 0,
- "title": "卧_______ 龙_______ 龙_______ 凤_______\n如_______ 如_______ 鹤_______ 一_______\n鼠_______ 抱_______ 狼_______ 狼_______\n狡_______ 呆_______ 虾_______ 黔_______"
- },
- {
- "id": 233,
- "sort": 1,
- "title": "盛_______ ——陶渊明\n莫_______ ——岳飞\n多_______ ——毛泽东"
- },
- {
- "id": 72,
- "sort": 2,
- "title": "乞巧"
- },
- {
- "id": 234,
- "sort": 3,
- "title": "安_______ 国_______ 太_______ 丰_______\n政_______ 人_______ 夜_______ 路_______\n多_______ 流_______ 兵_______ 生_______\n家_______ 哀_______ 民_______ 内_______"
- },
- {
- "id": 114,
- "sort": 4,
- "title": "游子吟"
- },
- {
- "id": 80,
- "sort": 5,
- "title": "渔歌子"
- },
- {
- "id": 84,
- "sort": 6,
- "title": "观书有感(其一)"
- }
- ]
- },
- {
- "miaoguoBookId": 64,
- "bookIdOld": 84,
- "label": "六年级上",
- "type": "daily",
- "rows": 7,
- "checked": [
- {
- "id": 122,
- "sort": 0,
- "title": "江畔独步寻花"
- },
- {
- "id": 236,
- "sort": 1,
- "title": "志_______ ——《论语》\n捐_______ ——曹植\n祖_______ ——李纲\n位_______ ——陆游"
- },
- {
- "id": 85,
- "sort": 2,
- "title": "观书有感(其二)"
- },
- {
- "id": 92,
- "sort": 3,
- "title": "送元二使安西"
- },
- {
- "id": 102,
- "sort": 4,
- "title": "过故人庄"
- },
- {
- "id": 237,
- "sort": 5,
- "title": "五行:_______\n五谷:_______\n五音:_______\n五彩:_______"
- },
- {
- "id": 239,
- "sort": 6,
- "title": "无_______ ——鲁迅《答客诮》\n寄_______ ——鲁迅《自题小像》\n其_______ ——鲁迅《故乡》\n惟_______ ——鲁迅《学界的三魂》\n我_______ ——鲁迅《中国人失掉自信力了吗》"
- }
- ]
- }
- ],
- "detached": [
- {
- "ID": 71,
- "HanziBookID": 0,
- "Title": "蝉"
- },
- {
- "ID": 79,
- "HanziBookID": 0,
- "Title": "长相思"
- },
- {
- "ID": 83,
- "HanziBookID": 0,
- "Title": "士人读书"
- },
- {
- "ID": 104,
- "HanziBookID": 0,
- "Title": "春日"
- },
- {
- "ID": 105,
- "HanziBookID": 0,
- "Title": "回乡偶书"
- },
- {
- "ID": 109,
- "HanziBookID": 0,
- "Title": "伯牙鼓琴"
- },
- {
- "ID": 110,
- "HanziBookID": 0,
- "Title": "书戴嵩画牛"
- },
- {
- "ID": 235,
- "HanziBookID": 0,
- "Title": "克_______ ——《尚书》\n居_______ ——魏征\n由_______ ——司马光\n一_______ ——朱用纯"
- },
- {
- "ID": 238,
- "HanziBookID": 0,
- "Title": "高_______ 天_______\n余_______ 黄_______\n轻_______ 行_______\n巧_______ 惟_______\n画_______ 笔_______\n妙_______ 栩_______"
- }
- ],
- "metadata": [
- {
- "ID": 13,
- "BookIDOld": 25,
- "UnitNum": 1,
- "WordNum": 8
- },
- {
- "ID": 15,
- "BookIDOld": 27,
- "UnitNum": 1,
- "WordNum": 7
- },
- {
- "ID": 17,
- "BookIDOld": 29,
- "UnitNum": 1,
- "WordNum": 9
- },
- {
- "ID": 19,
- "BookIDOld": 31,
- "UnitNum": 1,
- "WordNum": 9
- },
- {
- "ID": 21,
- "BookIDOld": 33,
- "UnitNum": 1,
- "WordNum": 10
- },
- {
- "ID": 23,
- "BookIDOld": 35,
- "UnitNum": 1,
- "WordNum": 10
- },
- {
- "ID": 24,
- "BookIDOld": 36,
- "UnitNum": 1,
- "WordNum": 15
- },
- {
- "ID": 54,
- "BookIDOld": 74,
- "UnitNum": 1,
- "WordNum": 8
- },
- {
- "ID": 56,
- "BookIDOld": 76,
- "UnitNum": 1,
- "WordNum": 8
- },
- {
- "ID": 58,
- "BookIDOld": 78,
- "UnitNum": 1,
- "WordNum": 7
- },
- {
- "ID": 60,
- "BookIDOld": 80,
- "UnitNum": 1,
- "WordNum": 7
- },
- {
- "ID": 61,
- "BookIDOld": 81,
- "UnitNum": 1,
- "WordNum": 6
- },
- {
- "ID": 62,
- "BookIDOld": 82,
- "UnitNum": 1,
- "WordNum": 7
- },
- {
- "ID": 63,
- "BookIDOld": 83,
- "UnitNum": 1,
- "WordNum": 5
- },
- {
- "ID": 64,
- "BookIDOld": 84,
- "UnitNum": 1,
- "WordNum": 7
- }
- ],
- "sourceExistingIds": 80
- }
- }
|