apply_ancient_daily_2026_fall.json 56 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370
  1. {
  2. "appliedAt": "2026-09-03T06:25:30.195Z",
  3. "sourceVersion": "2026-fall",
  4. "backupPath": "/Users/chengjie/Documents/git/miaoguo_system_server/.vscode/秒过知识库更新/backups/before_ancient_daily_2026_fall_2026-09-03T06-25-28-871Z.json",
  5. "plan": {
  6. "generatedAt": "2026-09-03T06:25:28.938Z",
  7. "mode": "apply",
  8. "sourceVersion": "2026-fall",
  9. "summary": {
  10. "inserts": 17,
  11. "updates": 59,
  12. "moves": 7,
  13. "detaches": 9,
  14. "metadataUpdates": 10,
  15. "databaseDeletes": 0
  16. },
  17. "books": [
  18. {
  19. "miaoguoBookId": 13,
  20. "bookIdOld": 25,
  21. "label": "一年级上",
  22. "type": "ancient",
  23. "finalRows": 8,
  24. "titles": [
  25. "金木水火土",
  26. "江南",
  27. "雪地里的小画家",
  28. "对韵歌",
  29. "升国旗",
  30. "小小的船",
  31. "两件宝",
  32. "比尾巴"
  33. ]
  34. },
  35. {
  36. "miaoguoBookId": 15,
  37. "bookIdOld": 27,
  38. "label": "二年级上",
  39. "type": "ancient",
  40. "finalRows": 7,
  41. "titles": [
  42. "登鹳雀楼",
  43. "望庐山瀑布",
  44. "江雪",
  45. "敕勒歌",
  46. "田家四季歌",
  47. "树之歌",
  48. "日月潭(节选)"
  49. ]
  50. },
  51. {
  52. "miaoguoBookId": 17,
  53. "bookIdOld": 29,
  54. "label": "三年级上",
  55. "type": "ancient",
  56. "finalRows": 9,
  57. "titles": [
  58. "望洞庭",
  59. "山行",
  60. "夜书所见",
  61. "鹿柴",
  62. "望天门山",
  63. "饮湖上初晴后雨",
  64. "司马光",
  65. "秋天的雨(节选)",
  66. "大自然的声音(节选)"
  67. ]
  68. },
  69. {
  70. "miaoguoBookId": 19,
  71. "bookIdOld": 31,
  72. "label": "四年级上",
  73. "type": "ancient",
  74. "finalRows": 9,
  75. "titles": [
  76. "暮江吟",
  77. "题西林壁",
  78. "雪梅",
  79. "精卫填海",
  80. "凉州词",
  81. "出塞",
  82. "夏日绝句",
  83. "王戎不取道旁李",
  84. "观潮(节选)"
  85. ]
  86. },
  87. {
  88. "miaoguoBookId": 21,
  89. "bookIdOld": 33,
  90. "label": "五年级上",
  91. "type": "ancient",
  92. "finalRows": 10,
  93. "titles": [
  94. "示儿",
  95. "题临安邸",
  96. "己亥杂诗",
  97. "少年中国说(节选)",
  98. "山居秋暝",
  99. "枫桥夜泊",
  100. "早春呈水部张十八员外",
  101. "敏而好学",
  102. "读书有三到",
  103. "白鹭"
  104. ]
  105. },
  106. {
  107. "miaoguoBookId": 23,
  108. "bookIdOld": 35,
  109. "label": "六年级上",
  110. "type": "ancient",
  111. "finalRows": 10,
  112. "titles": [
  113. "宿建德江",
  114. "六月二十七日望湖楼醉书",
  115. "西江月·夜行黄沙道中",
  116. "七律·长征",
  117. "浪淘沙(其一)",
  118. "江南春",
  119. "书湖阴先生壁",
  120. "两小儿辩日",
  121. "曹冲称象",
  122. "少年闰土(节选)"
  123. ]
  124. },
  125. {
  126. "miaoguoBookId": 54,
  127. "bookIdOld": 74,
  128. "label": "一年级上",
  129. "type": "daily",
  130. "finalRows": 8,
  131. "titles": [
  132. "咏鹅",
  133. "画",
  134. "一模____ 一心____ 独一____\n十全____ 五颜____ 三头____",
  135. "悯农(其二)",
  136. "一年_______,一日_______。\n一寸_______,寸金_______。",
  137. "古朗月行(节选)",
  138. "种_______,种_______。\n前_______,后_______。\n千_______,始_______。\n百_______,更_______。",
  139. "风"
  140. ]
  141. },
  142. {
  143. "miaoguoBookId": 56,
  144. "bookIdOld": 76,
  145. "label": "二年级上",
  146. "type": "daily",
  147. "finalRows": 8,
  148. "titles": [
  149. "梅花",
  150. "数九歌",
  151. "小儿垂钓",
  152. "有_______,无_______ \n白_______,杏_______ \n清_______,近_______ \n雾_______,天_______",
  153. "黑_______,白_______。\n一_______,一_______。\n书_______,学_______。",
  154. "有_______ ——《后汉书》\n志_______ ——诸葛亮\n穷_______ ——王勃",
  155. "夜宿山寺",
  156. "己_______ ——《论语》\n与_______ ——《论语》\n不_______ ——《孟子》"
  157. ]
  158. },
  159. {
  160. "miaoguoBookId": 58,
  161. "bookIdOld": 78,
  162. "label": "三年级上",
  163. "type": "daily",
  164. "finalRows": 7,
  165. "titles": [
  166. "所见",
  167. "舟夜书所见",
  168. "不_______ ——《论语》\n爱_______ ——《墨子》\n仁_______ ——《孟子》\n与_______ ——《荀子》",
  169. "人_______,泰_______。 二_______,其_______。 三_______,顶_______。",
  170. "早发白帝城",
  171. "采莲曲",
  172. "士_______,任_______。——《论语》\n志_______,言_______。——《墨子》\n锲_______,朽_______;锲_______,金_______。——《荀子》"
  173. ]
  174. },
  175. {
  176. "miaoguoBookId": 60,
  177. "bookIdOld": 80,
  178. "label": "四年级上",
  179. "type": "daily",
  180. "finalRows": 7,
  181. "titles": [
  182. "赠刘景文",
  183. "博_______ ——《中庸》\n智_______ ——王充\n人_______ ——韩愈\n善_______ ——方以智",
  184. "立_______,_______\n二_______,_______\n夏_______,_______\n八_______,雁_______\n一_______,十_______\n八_______,十_______",
  185. "嫦娥",
  186. "黄鹤楼送孟浩然之广陵",
  187. "尺_______,_______。\n仁_______,_______。\n机_______,_______。\n差_______,_______。\n一_______,_______。\n知_______,_______。",
  188. "别董大"
  189. ]
  190. },
  191. {
  192. "miaoguoBookId": 62,
  193. "bookIdOld": 82,
  194. "label": "五年级上",
  195. "type": "daily",
  196. "finalRows": 7,
  197. "titles": [
  198. "卧_______ 龙_______ 龙_______ 凤_______\n如_______ 如_______ 鹤_______ 一_______\n鼠_______ 抱_______ 狼_______ 狼_______\n狡_______ 呆_______ 虾_______ 黔_______",
  199. "盛_______ ——陶渊明\n莫_______ ——岳飞\n多_______ ——毛泽东",
  200. "乞巧",
  201. "安_______ 国_______ 太_______ 丰_______\n政_______ 人_______ 夜_______ 路_______\n多_______ 流_______ 兵_______ 生_______\n家_______ 哀_______ 民_______ 内_______",
  202. "游子吟",
  203. "渔歌子",
  204. "观书有感(其一)"
  205. ]
  206. },
  207. {
  208. "miaoguoBookId": 64,
  209. "bookIdOld": 84,
  210. "label": "六年级上",
  211. "type": "daily",
  212. "finalRows": 7,
  213. "titles": [
  214. "江畔独步寻花",
  215. "志_______ ——《论语》\n捐_______ ——曹植\n祖_______ ——李纲\n位_______ ——陆游",
  216. "观书有感(其二)",
  217. "送元二使安西",
  218. "过故人庄",
  219. "五行:_______\n五谷:_______\n五音:_______\n五彩:_______",
  220. "无_______ ——鲁迅《答客诮》\n寄_______ ——鲁迅《自题小像》\n其_______ ——鲁迅《故乡》\n惟_______ ——鲁迅《学界的三魂》\n我_______ ——鲁迅《中国人失掉自信力了吗》"
  221. ]
  222. }
  223. ],
  224. "changes": [
  225. {
  226. "action": "insert",
  227. "bookIdOld": 25,
  228. "sort": 0,
  229. "title": "金木水火土"
  230. },
  231. {
  232. "action": "update",
  233. "id": 2,
  234. "fromBookIdOld": 25,
  235. "toBookIdOld": 25,
  236. "sort": 1,
  237. "fromTitle": "江南",
  238. "toTitle": "江南",
  239. "changedFields": [
  240. "Sort"
  241. ]
  242. },
  243. {
  244. "action": "insert",
  245. "bookIdOld": 25,
  246. "sort": 2,
  247. "title": "雪地里的小画家"
  248. },
  249. {
  250. "action": "insert",
  251. "bookIdOld": 25,
  252. "sort": 3,
  253. "title": "对韵歌"
  254. },
  255. {
  256. "action": "insert",
  257. "bookIdOld": 25,
  258. "sort": 4,
  259. "title": "升国旗"
  260. },
  261. {
  262. "action": "insert",
  263. "bookIdOld": 25,
  264. "sort": 5,
  265. "title": "小小的船"
  266. },
  267. {
  268. "action": "insert",
  269. "bookIdOld": 25,
  270. "sort": 6,
  271. "title": "两件宝"
  272. },
  273. {
  274. "action": "insert",
  275. "bookIdOld": 25,
  276. "sort": 7,
  277. "title": "比尾巴"
  278. },
  279. {
  280. "action": "update",
  281. "id": 17,
  282. "fromBookIdOld": 27,
  283. "toBookIdOld": 27,
  284. "sort": 1,
  285. "fromTitle": "望庐山瀑布",
  286. "toTitle": "望庐山瀑布",
  287. "changedFields": [
  288. "Sort"
  289. ]
  290. },
  291. {
  292. "action": "update",
  293. "id": 18,
  294. "fromBookIdOld": 27,
  295. "toBookIdOld": 27,
  296. "sort": 2,
  297. "fromTitle": "江雪",
  298. "toTitle": "江雪",
  299. "changedFields": [
  300. "Sort",
  301. "Tag"
  302. ]
  303. },
  304. {
  305. "action": "update",
  306. "id": 20,
  307. "fromBookIdOld": 27,
  308. "toBookIdOld": 27,
  309. "sort": 3,
  310. "fromTitle": "敕勒歌",
  311. "toTitle": "敕勒歌",
  312. "changedFields": [
  313. "Sort"
  314. ]
  315. },
  316. {
  317. "action": "insert",
  318. "bookIdOld": 27,
  319. "sort": 4,
  320. "title": "田家四季歌"
  321. },
  322. {
  323. "action": "insert",
  324. "bookIdOld": 27,
  325. "sort": 5,
  326. "title": "树之歌"
  327. },
  328. {
  329. "action": "insert",
  330. "bookIdOld": 27,
  331. "sort": 6,
  332. "title": "日月潭(节选)"
  333. },
  334. {
  335. "action": "update",
  336. "id": 31,
  337. "fromBookIdOld": 29,
  338. "toBookIdOld": 29,
  339. "sort": 2,
  340. "fromTitle": "夜书所见",
  341. "toTitle": "夜书所见",
  342. "changedFields": [
  343. "Sort"
  344. ]
  345. },
  346. {
  347. "action": "update",
  348. "id": 49,
  349. "fromBookIdOld": 29,
  350. "toBookIdOld": 29,
  351. "sort": 3,
  352. "fromTitle": "鹿柴",
  353. "toTitle": "鹿柴",
  354. "changedFields": [
  355. "Sort",
  356. "Tag"
  357. ]
  358. },
  359. {
  360. "action": "update",
  361. "id": 32,
  362. "fromBookIdOld": 29,
  363. "toBookIdOld": 29,
  364. "sort": 4,
  365. "fromTitle": "望天门山",
  366. "toTitle": "望天门山",
  367. "changedFields": [
  368. "Sort"
  369. ]
  370. },
  371. {
  372. "action": "update",
  373. "id": 33,
  374. "fromBookIdOld": 29,
  375. "toBookIdOld": 29,
  376. "sort": 5,
  377. "fromTitle": "饮湖上初晴后雨",
  378. "toTitle": "饮湖上初晴后雨",
  379. "changedFields": [
  380. "Sort"
  381. ]
  382. },
  383. {
  384. "action": "update",
  385. "id": 37,
  386. "fromBookIdOld": 29,
  387. "toBookIdOld": 29,
  388. "sort": 6,
  389. "fromTitle": "司马光砸缸",
  390. "toTitle": "司马光",
  391. "changedFields": [
  392. "Sort",
  393. "Title"
  394. ]
  395. },
  396. {
  397. "action": "insert",
  398. "bookIdOld": 29,
  399. "sort": 7,
  400. "title": "秋天的雨(节选)"
  401. },
  402. {
  403. "action": "insert",
  404. "bookIdOld": 29,
  405. "sort": 8,
  406. "title": "大自然的声音(节选)"
  407. },
  408. {
  409. "action": "update",
  410. "id": 51,
  411. "fromBookIdOld": 31,
  412. "toBookIdOld": 31,
  413. "sort": 1,
  414. "fromTitle": "题西林壁",
  415. "toTitle": "题西林壁",
  416. "changedFields": [
  417. "Sort"
  418. ]
  419. },
  420. {
  421. "action": "update",
  422. "id": 52,
  423. "fromBookIdOld": 31,
  424. "toBookIdOld": 31,
  425. "sort": 2,
  426. "fromTitle": "雪梅",
  427. "toTitle": "雪梅",
  428. "changedFields": [
  429. "Sort"
  430. ]
  431. },
  432. {
  433. "action": "update",
  434. "id": 53,
  435. "fromBookIdOld": 31,
  436. "toBookIdOld": 31,
  437. "sort": 3,
  438. "fromTitle": "精卫填海",
  439. "toTitle": "精卫填海",
  440. "changedFields": [
  441. "Sort"
  442. ]
  443. },
  444. {
  445. "action": "update",
  446. "id": 56,
  447. "fromBookIdOld": 31,
  448. "toBookIdOld": 31,
  449. "sort": 4,
  450. "fromTitle": "凉州词",
  451. "toTitle": "凉州词",
  452. "changedFields": [
  453. "Sort"
  454. ]
  455. },
  456. {
  457. "action": "update",
  458. "id": 55,
  459. "fromBookIdOld": 31,
  460. "toBookIdOld": 31,
  461. "sort": 5,
  462. "fromTitle": "出塞",
  463. "toTitle": "出塞",
  464. "changedFields": [
  465. "Sort"
  466. ]
  467. },
  468. {
  469. "action": "update",
  470. "id": 57,
  471. "fromBookIdOld": 31,
  472. "toBookIdOld": 31,
  473. "sort": 6,
  474. "fromTitle": "夏日绝句",
  475. "toTitle": "夏日绝句",
  476. "changedFields": [
  477. "Sort"
  478. ]
  479. },
  480. {
  481. "action": "update",
  482. "id": 59,
  483. "fromBookIdOld": 31,
  484. "toBookIdOld": 31,
  485. "sort": 7,
  486. "fromTitle": "王戎不取道旁李",
  487. "toTitle": "王戎不取道旁李",
  488. "changedFields": [
  489. "Sort"
  490. ]
  491. },
  492. {
  493. "action": "insert",
  494. "bookIdOld": 31,
  495. "sort": 8,
  496. "title": "观潮(节选)"
  497. },
  498. {
  499. "action": "update",
  500. "id": 74,
  501. "fromBookIdOld": 33,
  502. "toBookIdOld": 33,
  503. "sort": 1,
  504. "fromTitle": "题临安邸",
  505. "toTitle": "题临安邸",
  506. "changedFields": [
  507. "Sort"
  508. ]
  509. },
  510. {
  511. "action": "update",
  512. "id": 75,
  513. "fromBookIdOld": 33,
  514. "toBookIdOld": 33,
  515. "sort": 2,
  516. "fromTitle": "己亥杂诗",
  517. "toTitle": "己亥杂诗",
  518. "changedFields": [
  519. "Sort"
  520. ]
  521. },
  522. {
  523. "action": "update",
  524. "id": 76,
  525. "fromBookIdOld": 33,
  526. "toBookIdOld": 33,
  527. "sort": 3,
  528. "fromTitle": "少年中国说",
  529. "toTitle": "少年中国说(节选)",
  530. "changedFields": [
  531. "Sort",
  532. "Title",
  533. "PeomContent"
  534. ]
  535. },
  536. {
  537. "action": "update",
  538. "id": 77,
  539. "fromBookIdOld": 33,
  540. "toBookIdOld": 33,
  541. "sort": 4,
  542. "fromTitle": "山居秋暝",
  543. "toTitle": "山居秋暝",
  544. "changedFields": [
  545. "Sort"
  546. ]
  547. },
  548. {
  549. "action": "update",
  550. "id": 78,
  551. "fromBookIdOld": 33,
  552. "toBookIdOld": 33,
  553. "sort": 5,
  554. "fromTitle": "枫桥夜泊",
  555. "toTitle": "枫桥夜泊",
  556. "changedFields": [
  557. "Sort"
  558. ]
  559. },
  560. {
  561. "action": "move",
  562. "id": 123,
  563. "fromBookIdOld": 36,
  564. "toBookIdOld": 33,
  565. "sort": 6,
  566. "fromTitle": "早春呈水部张十八员外(其一)",
  567. "toTitle": "早春呈水部张十八员外",
  568. "changedFields": [
  569. "HanziBookID",
  570. "Sort",
  571. "Tag",
  572. "Title"
  573. ]
  574. },
  575. {
  576. "action": "update",
  577. "id": 81,
  578. "fromBookIdOld": 33,
  579. "toBookIdOld": 33,
  580. "sort": 7,
  581. "fromTitle": "敏而好学",
  582. "toTitle": "敏而好学",
  583. "changedFields": [
  584. "Sort",
  585. "PeomContent"
  586. ]
  587. },
  588. {
  589. "action": "update",
  590. "id": 82,
  591. "fromBookIdOld": 33,
  592. "toBookIdOld": 33,
  593. "sort": 8,
  594. "fromTitle": "读书有三到",
  595. "toTitle": "读书有三到",
  596. "changedFields": [
  597. "Sort"
  598. ]
  599. },
  600. {
  601. "action": "insert",
  602. "bookIdOld": 33,
  603. "sort": 9,
  604. "title": "白鹭"
  605. },
  606. {
  607. "action": "update",
  608. "id": 100,
  609. "fromBookIdOld": 35,
  610. "toBookIdOld": 35,
  611. "sort": 1,
  612. "fromTitle": "六月二十七日望湖楼醉书",
  613. "toTitle": "六月二十七日望湖楼醉书",
  614. "changedFields": [
  615. "Sort"
  616. ]
  617. },
  618. {
  619. "action": "update",
  620. "id": 101,
  621. "fromBookIdOld": 35,
  622. "toBookIdOld": 35,
  623. "sort": 2,
  624. "fromTitle": "西江月·夜行黄沙道中",
  625. "toTitle": "西江月·夜行黄沙道中",
  626. "changedFields": [
  627. "Sort"
  628. ]
  629. },
  630. {
  631. "action": "update",
  632. "id": 103,
  633. "fromBookIdOld": 35,
  634. "toBookIdOld": 35,
  635. "sort": 3,
  636. "fromTitle": "七律·长征",
  637. "toTitle": "七律·长征",
  638. "changedFields": [
  639. "Sort"
  640. ]
  641. },
  642. {
  643. "action": "update",
  644. "id": 106,
  645. "fromBookIdOld": 35,
  646. "toBookIdOld": 35,
  647. "sort": 4,
  648. "fromTitle": "浪淘沙·九曲黄河万里沙",
  649. "toTitle": "浪淘沙(其一)",
  650. "changedFields": [
  651. "Sort",
  652. "Title"
  653. ]
  654. },
  655. {
  656. "action": "update",
  657. "id": 107,
  658. "fromBookIdOld": 35,
  659. "toBookIdOld": 35,
  660. "sort": 5,
  661. "fromTitle": "江南春",
  662. "toTitle": "江南春",
  663. "changedFields": [
  664. "Sort"
  665. ]
  666. },
  667. {
  668. "action": "update",
  669. "id": 108,
  670. "fromBookIdOld": 35,
  671. "toBookIdOld": 35,
  672. "sort": 6,
  673. "fromTitle": "书湖阴先生壁",
  674. "toTitle": "书湖阴先生壁",
  675. "changedFields": [
  676. "Sort"
  677. ]
  678. },
  679. {
  680. "action": "move",
  681. "id": 119,
  682. "fromBookIdOld": 36,
  683. "toBookIdOld": 35,
  684. "sort": 7,
  685. "fromTitle": "两小儿辩日",
  686. "toTitle": "两小儿辩日",
  687. "changedFields": [
  688. "HanziBookID",
  689. "Tag",
  690. "PeomContent"
  691. ]
  692. },
  693. {
  694. "action": "insert",
  695. "bookIdOld": 35,
  696. "sort": 8,
  697. "title": "曹冲称象"
  698. },
  699. {
  700. "action": "insert",
  701. "bookIdOld": 35,
  702. "sort": 9,
  703. "title": "少年闰土(节选)"
  704. },
  705. {
  706. "action": "update",
  707. "id": 266,
  708. "fromBookIdOld": 74,
  709. "toBookIdOld": 74,
  710. "sort": 2,
  711. "fromTitle": "一模____ 一心____ 独一____ 三头____ 五颜____ 十全____",
  712. "toTitle": "一模____ 一心____ 独一____\n十全____ 五颜____ 三头____",
  713. "changedFields": [
  714. "Sort",
  715. "Title",
  716. "PeomContent"
  717. ]
  718. },
  719. {
  720. "action": "update",
  721. "id": 4,
  722. "fromBookIdOld": 74,
  723. "toBookIdOld": 74,
  724. "sort": 3,
  725. "fromTitle": "悯农(其二)",
  726. "toTitle": "悯农(其二)",
  727. "changedFields": [
  728. "Sort"
  729. ]
  730. },
  731. {
  732. "action": "update",
  733. "id": 240,
  734. "fromBookIdOld": 74,
  735. "toBookIdOld": 74,
  736. "sort": 4,
  737. "fromTitle": "一年_______,一日_______。\n一寸_______,寸金_______。",
  738. "toTitle": "一年_______,一日_______。\n一寸_______,寸金_______。",
  739. "changedFields": [
  740. "Sort"
  741. ]
  742. },
  743. {
  744. "action": "update",
  745. "id": 5,
  746. "fromBookIdOld": 74,
  747. "toBookIdOld": 74,
  748. "sort": 5,
  749. "fromTitle": "古朗月行",
  750. "toTitle": "古朗月行(节选)",
  751. "changedFields": [
  752. "Sort",
  753. "Title"
  754. ]
  755. },
  756. {
  757. "action": "update",
  758. "id": 241,
  759. "fromBookIdOld": 74,
  760. "toBookIdOld": 74,
  761. "sort": 6,
  762. "fromTitle": "种_______,种_______。\n前_______,后_______。\n千_______,始_______。\n百_______,更_______。",
  763. "toTitle": "种_______,种_______。\n前_______,后_______。\n千_______,始_______。\n百_______,更_______。",
  764. "changedFields": [
  765. "Sort"
  766. ]
  767. },
  768. {
  769. "action": "update",
  770. "id": 6,
  771. "fromBookIdOld": 74,
  772. "toBookIdOld": 74,
  773. "sort": 7,
  774. "fromTitle": "风",
  775. "toTitle": "风",
  776. "changedFields": [
  777. "Sort"
  778. ]
  779. },
  780. {
  781. "action": "move",
  782. "id": 14,
  783. "fromBookIdOld": 0,
  784. "toBookIdOld": 76,
  785. "sort": 0,
  786. "fromTitle": "梅花",
  787. "toTitle": "梅花",
  788. "changedFields": [
  789. "HanziBookID"
  790. ]
  791. },
  792. {
  793. "action": "update",
  794. "id": 224,
  795. "fromBookIdOld": 76,
  796. "toBookIdOld": 76,
  797. "sort": 1,
  798. "fromTitle": "数九歌",
  799. "toTitle": "数九歌",
  800. "changedFields": [
  801. "Sort",
  802. "PeomContent"
  803. ]
  804. },
  805. {
  806. "action": "update",
  807. "id": 15,
  808. "fromBookIdOld": 76,
  809. "toBookIdOld": 76,
  810. "sort": 2,
  811. "fromTitle": "小儿垂钓",
  812. "toTitle": "小儿垂钓",
  813. "changedFields": [
  814. "Sort"
  815. ]
  816. },
  817. {
  818. "action": "update",
  819. "id": 222,
  820. "fromBookIdOld": 76,
  821. "toBookIdOld": 76,
  822. "sort": 3,
  823. "fromTitle": "有_______,无_______ \n白_______,杏_______ \n清_______,近_______ \n雾_______,天_______",
  824. "toTitle": "有_______,无_______ \n白_______,杏_______ \n清_______,近_______ \n雾_______,天_______",
  825. "changedFields": [
  826. "Sort"
  827. ]
  828. },
  829. {
  830. "action": "update",
  831. "id": 225,
  832. "fromBookIdOld": 76,
  833. "toBookIdOld": 76,
  834. "sort": 4,
  835. "fromTitle": "少_______,老_______。\n一_______,一_______。\n书_______,学_______。",
  836. "toTitle": "黑_______,白_______。\n一_______,一_______。\n书_______,学_______。",
  837. "changedFields": [
  838. "Sort",
  839. "Tag",
  840. "Title",
  841. "PeomContent"
  842. ]
  843. },
  844. {
  845. "action": "update",
  846. "id": 223,
  847. "fromBookIdOld": 76,
  848. "toBookIdOld": 76,
  849. "sort": 5,
  850. "fromTitle": "有_______ ——《后汉书》\n志_______ ——诸葛亮\n穷_______ ——王勃",
  851. "toTitle": "有_______ ——《后汉书》\n志_______ ——诸葛亮\n穷_______ ——王勃",
  852. "changedFields": [
  853. "Sort"
  854. ]
  855. },
  856. {
  857. "action": "update",
  858. "id": 19,
  859. "fromBookIdOld": 76,
  860. "toBookIdOld": 76,
  861. "sort": 6,
  862. "fromTitle": "夜宿山寺",
  863. "toTitle": "夜宿山寺",
  864. "changedFields": [
  865. "Sort",
  866. "Tag"
  867. ]
  868. },
  869. {
  870. "action": "update",
  871. "id": 221,
  872. "fromBookIdOld": 76,
  873. "toBookIdOld": 76,
  874. "sort": 7,
  875. "fromTitle": "己_______ ——《论语》\n与_______ ——《论语》\n不_______ ——《孟子》",
  876. "toTitle": "己_______ ——《论语》\n与_______ ——《论语》\n不_______ ——《孟子》",
  877. "changedFields": [
  878. "Sort"
  879. ]
  880. },
  881. {
  882. "action": "update",
  883. "id": 28,
  884. "fromBookIdOld": 78,
  885. "toBookIdOld": 78,
  886. "sort": 0,
  887. "fromTitle": "所见",
  888. "toTitle": "所见",
  889. "changedFields": [
  890. "Sort"
  891. ]
  892. },
  893. {
  894. "action": "update",
  895. "id": 27,
  896. "fromBookIdOld": 78,
  897. "toBookIdOld": 78,
  898. "sort": 1,
  899. "fromTitle": "舟夜书所见",
  900. "toTitle": "舟夜书所见",
  901. "changedFields": [
  902. "Sort"
  903. ]
  904. },
  905. {
  906. "action": "update",
  907. "id": 228,
  908. "fromBookIdOld": 78,
  909. "toBookIdOld": 78,
  910. "sort": 2,
  911. "fromTitle": "不_______ ——《论语》\n爱_______ ——《墨子》\n仁_______ ——《孟子》\n与_______ ——《荀子》",
  912. "toTitle": "不_______ ——《论语》\n爱_______ ——《墨子》\n仁_______ ——《孟子》\n与_______ ——《荀子》",
  913. "changedFields": [
  914. "Sort"
  915. ]
  916. },
  917. {
  918. "action": "update",
  919. "id": 242,
  920. "fromBookIdOld": 78,
  921. "toBookIdOld": 78,
  922. "sort": 3,
  923. "fromTitle": "人_______,泰_______。 二_______,其_______。 三_______,顶_______。",
  924. "toTitle": "人_______,泰_______。 二_______,其_______。 三_______,顶_______。",
  925. "changedFields": [
  926. "Sort"
  927. ]
  928. },
  929. {
  930. "action": "update",
  931. "id": 35,
  932. "fromBookIdOld": 78,
  933. "toBookIdOld": 78,
  934. "sort": 4,
  935. "fromTitle": "早发白帝城",
  936. "toTitle": "早发白帝城",
  937. "changedFields": [
  938. "Sort"
  939. ]
  940. },
  941. {
  942. "action": "update",
  943. "id": 36,
  944. "fromBookIdOld": 78,
  945. "toBookIdOld": 78,
  946. "sort": 5,
  947. "fromTitle": "采莲曲",
  948. "toTitle": "采莲曲",
  949. "changedFields": [
  950. "Sort"
  951. ]
  952. },
  953. {
  954. "action": "update",
  955. "id": 267,
  956. "fromBookIdOld": 78,
  957. "toBookIdOld": 78,
  958. "sort": 6,
  959. "fromTitle": "士_______,任_______ ——《论语》 志_______,言_______ ——《墨子》 锲_______,朽_______。锲_______,金_______。 ——《荀子》",
  960. "toTitle": "士_______,任_______。——《论语》\n志_______,言_______。——《墨子》\n锲_______,朽_______;锲_______,金_______。——《荀子》",
  961. "changedFields": [
  962. "Sort",
  963. "Title",
  964. "PeomContent"
  965. ]
  966. },
  967. {
  968. "action": "update",
  969. "id": 229,
  970. "fromBookIdOld": 80,
  971. "toBookIdOld": 80,
  972. "sort": 1,
  973. "fromTitle": "博_______ ——《礼记》 智_______ ——王充 人_______ ——韩愈 善_______ ——方以智",
  974. "toTitle": "博_______ ——《中庸》\n智_______ ——王充\n人_______ ——韩愈\n善_______ ——方以智",
  975. "changedFields": [
  976. "Title",
  977. "PeomContent"
  978. ]
  979. },
  980. {
  981. "action": "update",
  982. "id": 230,
  983. "fromBookIdOld": 80,
  984. "toBookIdOld": 80,
  985. "sort": 2,
  986. "fromTitle": "立_______,_______\n二_______,_______\n夏_______,_______\n八_______,雁_______\n一_______,十_______\n八_______,十_______",
  987. "toTitle": "立_______,_______\n二_______,_______\n夏_______,_______\n八_______,雁_______\n一_______,十_______\n八_______,十_______",
  988. "changedFields": [
  989. "PeomContent"
  990. ]
  991. },
  992. {
  993. "action": "update",
  994. "id": 231,
  995. "fromBookIdOld": 80,
  996. "toBookIdOld": 80,
  997. "sort": 5,
  998. "fromTitle": "尺_______,_______\n机_______,_______\n差_______,_______\n病_______,_______\n一_______,_______\n比_______,_______",
  999. "toTitle": "尺_______,_______。\n仁_______,_______。\n机_______,_______。\n差_______,_______。\n一_______,_______。\n知_______,_______。",
  1000. "changedFields": [
  1001. "Tag",
  1002. "Title",
  1003. "PeomContent"
  1004. ]
  1005. },
  1006. {
  1007. "action": "insert",
  1008. "bookIdOld": 82,
  1009. "sort": 0,
  1010. "title": "卧_______ 龙_______ 龙_______ 凤_______\n如_______ 如_______ 鹤_______ 一_______\n鼠_______ 抱_______ 狼_______ 狼_______\n狡_______ 呆_______ 虾_______ 黔_______"
  1011. },
  1012. {
  1013. "action": "update",
  1014. "id": 233,
  1015. "fromBookIdOld": 82,
  1016. "toBookIdOld": 82,
  1017. "sort": 1,
  1018. "fromTitle": "不_______ ——葛洪\n盛_______ ——陶渊明\n莫_______ ——岳飞\n多_______ ——毛泽东",
  1019. "toTitle": "盛_______ ——陶渊明\n莫_______ ——岳飞\n多_______ ——毛泽东",
  1020. "changedFields": [
  1021. "Title",
  1022. "PeomContent"
  1023. ]
  1024. },
  1025. {
  1026. "action": "update",
  1027. "id": 234,
  1028. "fromBookIdOld": 82,
  1029. "toBookIdOld": 82,
  1030. "sort": 3,
  1031. "fromTitle": "太_______ 国_______\n丰_______ 安_______\n政_______ 人_______\n夜_______ 路_______\n多_______ 兵_______\n流_______ 生_______\n家_______ 哀_______\n民_______ 内_______",
  1032. "toTitle": "安_______ 国_______ 太_______ 丰_______\n政_______ 人_______ 夜_______ 路_______\n多_______ 流_______ 兵_______ 生_______\n家_______ 哀_______ 民_______ 内_______",
  1033. "changedFields": [
  1034. "Title",
  1035. "PeomContent"
  1036. ]
  1037. },
  1038. {
  1039. "action": "move",
  1040. "id": 114,
  1041. "fromBookIdOld": 83,
  1042. "toBookIdOld": 82,
  1043. "sort": 4,
  1044. "fromTitle": "游子吟",
  1045. "toTitle": "游子吟",
  1046. "changedFields": [
  1047. "HanziBookID",
  1048. "Sort",
  1049. "Tag"
  1050. ]
  1051. },
  1052. {
  1053. "action": "update",
  1054. "id": 84,
  1055. "fromBookIdOld": 82,
  1056. "toBookIdOld": 82,
  1057. "sort": 6,
  1058. "fromTitle": "观书有感二首·其一",
  1059. "toTitle": "观书有感(其一)",
  1060. "changedFields": [
  1061. "Title"
  1062. ]
  1063. },
  1064. {
  1065. "action": "move",
  1066. "id": 122,
  1067. "fromBookIdOld": 81,
  1068. "toBookIdOld": 84,
  1069. "sort": 0,
  1070. "fromTitle": "江畔独步寻花",
  1071. "toTitle": "江畔独步寻花",
  1072. "changedFields": [
  1073. "HanziBookID",
  1074. "Sort",
  1075. "Tag"
  1076. ]
  1077. },
  1078. {
  1079. "action": "update",
  1080. "id": 236,
  1081. "fromBookIdOld": 84,
  1082. "toBookIdOld": 84,
  1083. "sort": 1,
  1084. "fromTitle": "捐_______ ——曹植\n祖_______ ——李纲\n位_______ ——陆游",
  1085. "toTitle": "志_______ ——《论语》\n捐_______ ——曹植\n祖_______ ——李纲\n位_______ ——陆游",
  1086. "changedFields": [
  1087. "Title",
  1088. "PeomContent"
  1089. ]
  1090. },
  1091. {
  1092. "action": "move",
  1093. "id": 85,
  1094. "fromBookIdOld": 82,
  1095. "toBookIdOld": 84,
  1096. "sort": 2,
  1097. "fromTitle": "观书有感二首·其二",
  1098. "toTitle": "观书有感(其二)",
  1099. "changedFields": [
  1100. "HanziBookID",
  1101. "Sort",
  1102. "Tag",
  1103. "Title"
  1104. ]
  1105. },
  1106. {
  1107. "action": "move",
  1108. "id": 92,
  1109. "fromBookIdOld": 36,
  1110. "toBookIdOld": 84,
  1111. "sort": 3,
  1112. "fromTitle": "送元二使安西",
  1113. "toTitle": "送元二使安西",
  1114. "changedFields": [
  1115. "HanziBookID",
  1116. "Sort",
  1117. "Tag"
  1118. ]
  1119. },
  1120. {
  1121. "action": "update",
  1122. "id": 102,
  1123. "fromBookIdOld": 84,
  1124. "toBookIdOld": 84,
  1125. "sort": 4,
  1126. "fromTitle": "过故人庄",
  1127. "toTitle": "过故人庄",
  1128. "changedFields": [
  1129. "Sort"
  1130. ]
  1131. },
  1132. {
  1133. "action": "update",
  1134. "id": 237,
  1135. "fromBookIdOld": 84,
  1136. "toBookIdOld": 84,
  1137. "sort": 5,
  1138. "fromTitle": "五行:_______\n五谷:_______\n五音:_______\n五彩:_______",
  1139. "toTitle": "五行:_______\n五谷:_______\n五音:_______\n五彩:_______",
  1140. "changedFields": [
  1141. "Sort"
  1142. ]
  1143. },
  1144. {
  1145. "action": "update",
  1146. "id": 239,
  1147. "fromBookIdOld": 84,
  1148. "toBookIdOld": 84,
  1149. "sort": 6,
  1150. "fromTitle": "无_______ ——鲁迅《答客诮》\n其_______ ——鲁迅《故乡》\n惟_______ ——鲁迅《学界的三魂》\n我_______ ——鲁迅《中国人失掉自信力了吗》",
  1151. "toTitle": "无_______ ——鲁迅《答客诮》\n寄_______ ——鲁迅《自题小像》\n其_______ ——鲁迅《故乡》\n惟_______ ——鲁迅《学界的三魂》\n我_______ ——鲁迅《中国人失掉自信力了吗》",
  1152. "changedFields": [
  1153. "Title",
  1154. "PeomContent"
  1155. ]
  1156. },
  1157. {
  1158. "action": "detach",
  1159. "id": 79,
  1160. "fromBookIdOld": 33,
  1161. "toBookIdOld": 0,
  1162. "title": "长相思",
  1163. "changedFields": [
  1164. "HanziBookID"
  1165. ]
  1166. },
  1167. {
  1168. "action": "detach",
  1169. "id": 83,
  1170. "fromBookIdOld": 33,
  1171. "toBookIdOld": 0,
  1172. "title": "士人读书",
  1173. "changedFields": [
  1174. "HanziBookID"
  1175. ]
  1176. },
  1177. {
  1178. "action": "detach",
  1179. "id": 109,
  1180. "fromBookIdOld": 35,
  1181. "toBookIdOld": 0,
  1182. "title": "伯牙鼓琴",
  1183. "changedFields": [
  1184. "HanziBookID"
  1185. ]
  1186. },
  1187. {
  1188. "action": "detach",
  1189. "id": 110,
  1190. "fromBookIdOld": 35,
  1191. "toBookIdOld": 0,
  1192. "title": "书戴嵩画牛",
  1193. "changedFields": [
  1194. "HanziBookID"
  1195. ]
  1196. },
  1197. {
  1198. "action": "detach",
  1199. "id": 71,
  1200. "fromBookIdOld": 82,
  1201. "toBookIdOld": 0,
  1202. "title": "蝉",
  1203. "changedFields": [
  1204. "HanziBookID"
  1205. ]
  1206. },
  1207. {
  1208. "action": "detach",
  1209. "id": 235,
  1210. "fromBookIdOld": 82,
  1211. "toBookIdOld": 0,
  1212. "title": "克_______ ——《尚书》\n居_______ ——魏征\n由_______ ——司马光\n一_______ ——朱用纯",
  1213. "changedFields": [
  1214. "HanziBookID"
  1215. ]
  1216. },
  1217. {
  1218. "action": "detach",
  1219. "id": 104,
  1220. "fromBookIdOld": 84,
  1221. "toBookIdOld": 0,
  1222. "title": "春日",
  1223. "changedFields": [
  1224. "HanziBookID"
  1225. ]
  1226. },
  1227. {
  1228. "action": "detach",
  1229. "id": 105,
  1230. "fromBookIdOld": 84,
  1231. "toBookIdOld": 0,
  1232. "title": "回乡偶书",
  1233. "changedFields": [
  1234. "HanziBookID"
  1235. ]
  1236. },
  1237. {
  1238. "action": "detach",
  1239. "id": 238,
  1240. "fromBookIdOld": 84,
  1241. "toBookIdOld": 0,
  1242. "title": "高_______ 天_______\n余_______ 黄_______\n轻_______ 行_______\n巧_______ 惟_______\n画_______ 笔_______\n妙_______ 栩_______",
  1243. "changedFields": [
  1244. "HanziBookID"
  1245. ]
  1246. }
  1247. ],
  1248. "metadataChanges": [
  1249. {
  1250. "miaoguoBookId": 13,
  1251. "bookIdOld": 25,
  1252. "from": {
  1253. "unitNum": 1,
  1254. "wordNum": 1
  1255. },
  1256. "to": {
  1257. "unitNum": 1,
  1258. "wordNum": 8
  1259. },
  1260. "changed": true
  1261. },
  1262. {
  1263. "miaoguoBookId": 15,
  1264. "bookIdOld": 27,
  1265. "from": {
  1266. "unitNum": 1,
  1267. "wordNum": 4
  1268. },
  1269. "to": {
  1270. "unitNum": 1,
  1271. "wordNum": 7
  1272. },
  1273. "changed": true
  1274. },
  1275. {
  1276. "miaoguoBookId": 17,
  1277. "bookIdOld": 29,
  1278. "from": {
  1279. "unitNum": 1,
  1280. "wordNum": 7
  1281. },
  1282. "to": {
  1283. "unitNum": 1,
  1284. "wordNum": 9
  1285. },
  1286. "changed": true
  1287. },
  1288. {
  1289. "miaoguoBookId": 19,
  1290. "bookIdOld": 31,
  1291. "from": {
  1292. "unitNum": 1,
  1293. "wordNum": 8
  1294. },
  1295. "to": {
  1296. "unitNum": 1,
  1297. "wordNum": 9
  1298. },
  1299. "changed": true
  1300. },
  1301. {
  1302. "miaoguoBookId": 21,
  1303. "bookIdOld": 33,
  1304. "from": {
  1305. "unitNum": 1,
  1306. "wordNum": 9
  1307. },
  1308. "to": {
  1309. "unitNum": 1,
  1310. "wordNum": 10
  1311. },
  1312. "changed": true
  1313. },
  1314. {
  1315. "miaoguoBookId": 23,
  1316. "bookIdOld": 35,
  1317. "from": {
  1318. "unitNum": 1,
  1319. "wordNum": 9
  1320. },
  1321. "to": {
  1322. "unitNum": 1,
  1323. "wordNum": 10
  1324. },
  1325. "changed": true
  1326. },
  1327. {
  1328. "miaoguoBookId": 24,
  1329. "bookIdOld": 36,
  1330. "from": {
  1331. "unitNum": 1,
  1332. "wordNum": 18
  1333. },
  1334. "to": {
  1335. "unitNum": 1,
  1336. "wordNum": 15
  1337. },
  1338. "changed": true
  1339. },
  1340. {
  1341. "miaoguoBookId": 54,
  1342. "bookIdOld": 74,
  1343. "from": {
  1344. "unitNum": 1,
  1345. "wordNum": 8
  1346. },
  1347. "to": {
  1348. "unitNum": 1,
  1349. "wordNum": 8
  1350. },
  1351. "changed": false
  1352. },
  1353. {
  1354. "miaoguoBookId": 56,
  1355. "bookIdOld": 76,
  1356. "from": {
  1357. "unitNum": 1,
  1358. "wordNum": 8
  1359. },
  1360. "to": {
  1361. "unitNum": 1,
  1362. "wordNum": 8
  1363. },
  1364. "changed": false
  1365. },
  1366. {
  1367. "miaoguoBookId": 58,
  1368. "bookIdOld": 78,
  1369. "from": {
  1370. "unitNum": 1,
  1371. "wordNum": 7
  1372. },
  1373. "to": {
  1374. "unitNum": 1,
  1375. "wordNum": 7
  1376. },
  1377. "changed": false
  1378. },
  1379. {
  1380. "miaoguoBookId": 60,
  1381. "bookIdOld": 80,
  1382. "from": {
  1383. "unitNum": 1,
  1384. "wordNum": 7
  1385. },
  1386. "to": {
  1387. "unitNum": 1,
  1388. "wordNum": 7
  1389. },
  1390. "changed": false
  1391. },
  1392. {
  1393. "miaoguoBookId": 61,
  1394. "bookIdOld": 81,
  1395. "from": {
  1396. "unitNum": 1,
  1397. "wordNum": 7
  1398. },
  1399. "to": {
  1400. "unitNum": 1,
  1401. "wordNum": 6
  1402. },
  1403. "changed": true
  1404. },
  1405. {
  1406. "miaoguoBookId": 62,
  1407. "bookIdOld": 82,
  1408. "from": {
  1409. "unitNum": 1,
  1410. "wordNum": 8
  1411. },
  1412. "to": {
  1413. "unitNum": 1,
  1414. "wordNum": 7
  1415. },
  1416. "changed": true
  1417. },
  1418. {
  1419. "miaoguoBookId": 63,
  1420. "bookIdOld": 83,
  1421. "from": {
  1422. "unitNum": 1,
  1423. "wordNum": 7
  1424. },
  1425. "to": {
  1426. "unitNum": 1,
  1427. "wordNum": 5
  1428. },
  1429. "changed": true
  1430. },
  1431. {
  1432. "miaoguoBookId": 64,
  1433. "bookIdOld": 84,
  1434. "from": {
  1435. "unitNum": 1,
  1436. "wordNum": 7
  1437. },
  1438. "to": {
  1439. "unitNum": 1,
  1440. "wordNum": 7
  1441. },
  1442. "changed": false
  1443. }
  1444. ]
  1445. },
  1446. "applied": {
  1447. "inserted": [
  1448. {
  1449. "id": 275,
  1450. "bookIdOld": 25,
  1451. "title": "金木水火土"
  1452. },
  1453. {
  1454. "id": 276,
  1455. "bookIdOld": 25,
  1456. "title": "雪地里的小画家"
  1457. },
  1458. {
  1459. "id": 277,
  1460. "bookIdOld": 25,
  1461. "title": "对韵歌"
  1462. },
  1463. {
  1464. "id": 278,
  1465. "bookIdOld": 25,
  1466. "title": "升国旗"
  1467. },
  1468. {
  1469. "id": 279,
  1470. "bookIdOld": 25,
  1471. "title": "小小的船"
  1472. },
  1473. {
  1474. "id": 280,
  1475. "bookIdOld": 25,
  1476. "title": "两件宝"
  1477. },
  1478. {
  1479. "id": 281,
  1480. "bookIdOld": 25,
  1481. "title": "比尾巴"
  1482. },
  1483. {
  1484. "id": 282,
  1485. "bookIdOld": 27,
  1486. "title": "田家四季歌"
  1487. },
  1488. {
  1489. "id": 283,
  1490. "bookIdOld": 27,
  1491. "title": "树之歌"
  1492. },
  1493. {
  1494. "id": 284,
  1495. "bookIdOld": 27,
  1496. "title": "日月潭(节选)"
  1497. },
  1498. {
  1499. "id": 285,
  1500. "bookIdOld": 29,
  1501. "title": "秋天的雨(节选)"
  1502. },
  1503. {
  1504. "id": 286,
  1505. "bookIdOld": 29,
  1506. "title": "大自然的声音(节选)"
  1507. },
  1508. {
  1509. "id": 287,
  1510. "bookIdOld": 31,
  1511. "title": "观潮(节选)"
  1512. },
  1513. {
  1514. "id": 288,
  1515. "bookIdOld": 33,
  1516. "title": "白鹭"
  1517. },
  1518. {
  1519. "id": 289,
  1520. "bookIdOld": 35,
  1521. "title": "曹冲称象"
  1522. },
  1523. {
  1524. "id": 290,
  1525. "bookIdOld": 35,
  1526. "title": "少年闰土(节选)"
  1527. },
  1528. {
  1529. "id": 291,
  1530. "bookIdOld": 82,
  1531. "title": "卧_______ 龙_______ 龙_______ 凤_______\n如_______ 如_______ 鹤_______ 一_______\n鼠_______ 抱_______ 狼_______ 狼_______\n狡_______ 呆_______ 虾_______ 黔_______"
  1532. }
  1533. ],
  1534. "updated": [
  1535. 2,
  1536. 16,
  1537. 17,
  1538. 18,
  1539. 20,
  1540. 34,
  1541. 29,
  1542. 31,
  1543. 49,
  1544. 32,
  1545. 33,
  1546. 37,
  1547. 50,
  1548. 51,
  1549. 52,
  1550. 53,
  1551. 56,
  1552. 55,
  1553. 57,
  1554. 59,
  1555. 73,
  1556. 74,
  1557. 75,
  1558. 76,
  1559. 77,
  1560. 78,
  1561. 123,
  1562. 81,
  1563. 82,
  1564. 99,
  1565. 100,
  1566. 101,
  1567. 103,
  1568. 106,
  1569. 107,
  1570. 108,
  1571. 119,
  1572. 1,
  1573. 3,
  1574. 266,
  1575. 4,
  1576. 240,
  1577. 5,
  1578. 241,
  1579. 6,
  1580. 14,
  1581. 224,
  1582. 15,
  1583. 222,
  1584. 225,
  1585. 223,
  1586. 19,
  1587. 221,
  1588. 28,
  1589. 27,
  1590. 228,
  1591. 242,
  1592. 35,
  1593. 36,
  1594. 267,
  1595. 30,
  1596. 229,
  1597. 230,
  1598. 54,
  1599. 94,
  1600. 231,
  1601. 58,
  1602. 233,
  1603. 72,
  1604. 234,
  1605. 114,
  1606. 80,
  1607. 84,
  1608. 122,
  1609. 236,
  1610. 85,
  1611. 92,
  1612. 102,
  1613. 237,
  1614. 239
  1615. ],
  1616. "detached": [
  1617. 79,
  1618. 83,
  1619. 109,
  1620. 110,
  1621. 71,
  1622. 235,
  1623. 104,
  1624. 105,
  1625. 238
  1626. ]
  1627. },
  1628. "audit": {
  1629. "generatedAt": "2026-09-03T06:25:30.188Z",
  1630. "sourceVersion": "2026-fall",
  1631. "ok": true,
  1632. "failures": [],
  1633. "books": [
  1634. {
  1635. "miaoguoBookId": 13,
  1636. "bookIdOld": 25,
  1637. "label": "一年级上",
  1638. "type": "ancient",
  1639. "rows": 8,
  1640. "checked": [
  1641. {
  1642. "id": 275,
  1643. "sort": 0,
  1644. "title": "金木水火土"
  1645. },
  1646. {
  1647. "id": 2,
  1648. "sort": 1,
  1649. "title": "江南"
  1650. },
  1651. {
  1652. "id": 276,
  1653. "sort": 2,
  1654. "title": "雪地里的小画家"
  1655. },
  1656. {
  1657. "id": 277,
  1658. "sort": 3,
  1659. "title": "对韵歌"
  1660. },
  1661. {
  1662. "id": 278,
  1663. "sort": 4,
  1664. "title": "升国旗"
  1665. },
  1666. {
  1667. "id": 279,
  1668. "sort": 5,
  1669. "title": "小小的船"
  1670. },
  1671. {
  1672. "id": 280,
  1673. "sort": 6,
  1674. "title": "两件宝"
  1675. },
  1676. {
  1677. "id": 281,
  1678. "sort": 7,
  1679. "title": "比尾巴"
  1680. }
  1681. ]
  1682. },
  1683. {
  1684. "miaoguoBookId": 15,
  1685. "bookIdOld": 27,
  1686. "label": "二年级上",
  1687. "type": "ancient",
  1688. "rows": 7,
  1689. "checked": [
  1690. {
  1691. "id": 16,
  1692. "sort": 0,
  1693. "title": "登鹳雀楼"
  1694. },
  1695. {
  1696. "id": 17,
  1697. "sort": 1,
  1698. "title": "望庐山瀑布"
  1699. },
  1700. {
  1701. "id": 18,
  1702. "sort": 2,
  1703. "title": "江雪"
  1704. },
  1705. {
  1706. "id": 20,
  1707. "sort": 3,
  1708. "title": "敕勒歌"
  1709. },
  1710. {
  1711. "id": 282,
  1712. "sort": 4,
  1713. "title": "田家四季歌"
  1714. },
  1715. {
  1716. "id": 283,
  1717. "sort": 5,
  1718. "title": "树之歌"
  1719. },
  1720. {
  1721. "id": 284,
  1722. "sort": 6,
  1723. "title": "日月潭(节选)"
  1724. }
  1725. ]
  1726. },
  1727. {
  1728. "miaoguoBookId": 17,
  1729. "bookIdOld": 29,
  1730. "label": "三年级上",
  1731. "type": "ancient",
  1732. "rows": 9,
  1733. "checked": [
  1734. {
  1735. "id": 34,
  1736. "sort": 0,
  1737. "title": "望洞庭"
  1738. },
  1739. {
  1740. "id": 29,
  1741. "sort": 1,
  1742. "title": "山行"
  1743. },
  1744. {
  1745. "id": 31,
  1746. "sort": 2,
  1747. "title": "夜书所见"
  1748. },
  1749. {
  1750. "id": 49,
  1751. "sort": 3,
  1752. "title": "鹿柴"
  1753. },
  1754. {
  1755. "id": 32,
  1756. "sort": 4,
  1757. "title": "望天门山"
  1758. },
  1759. {
  1760. "id": 33,
  1761. "sort": 5,
  1762. "title": "饮湖上初晴后雨"
  1763. },
  1764. {
  1765. "id": 37,
  1766. "sort": 6,
  1767. "title": "司马光"
  1768. },
  1769. {
  1770. "id": 285,
  1771. "sort": 7,
  1772. "title": "秋天的雨(节选)"
  1773. },
  1774. {
  1775. "id": 286,
  1776. "sort": 8,
  1777. "title": "大自然的声音(节选)"
  1778. }
  1779. ]
  1780. },
  1781. {
  1782. "miaoguoBookId": 19,
  1783. "bookIdOld": 31,
  1784. "label": "四年级上",
  1785. "type": "ancient",
  1786. "rows": 9,
  1787. "checked": [
  1788. {
  1789. "id": 50,
  1790. "sort": 0,
  1791. "title": "暮江吟"
  1792. },
  1793. {
  1794. "id": 51,
  1795. "sort": 1,
  1796. "title": "题西林壁"
  1797. },
  1798. {
  1799. "id": 52,
  1800. "sort": 2,
  1801. "title": "雪梅"
  1802. },
  1803. {
  1804. "id": 53,
  1805. "sort": 3,
  1806. "title": "精卫填海"
  1807. },
  1808. {
  1809. "id": 56,
  1810. "sort": 4,
  1811. "title": "凉州词"
  1812. },
  1813. {
  1814. "id": 55,
  1815. "sort": 5,
  1816. "title": "出塞"
  1817. },
  1818. {
  1819. "id": 57,
  1820. "sort": 6,
  1821. "title": "夏日绝句"
  1822. },
  1823. {
  1824. "id": 59,
  1825. "sort": 7,
  1826. "title": "王戎不取道旁李"
  1827. },
  1828. {
  1829. "id": 287,
  1830. "sort": 8,
  1831. "title": "观潮(节选)"
  1832. }
  1833. ]
  1834. },
  1835. {
  1836. "miaoguoBookId": 21,
  1837. "bookIdOld": 33,
  1838. "label": "五年级上",
  1839. "type": "ancient",
  1840. "rows": 10,
  1841. "checked": [
  1842. {
  1843. "id": 73,
  1844. "sort": 0,
  1845. "title": "示儿"
  1846. },
  1847. {
  1848. "id": 74,
  1849. "sort": 1,
  1850. "title": "题临安邸"
  1851. },
  1852. {
  1853. "id": 75,
  1854. "sort": 2,
  1855. "title": "己亥杂诗"
  1856. },
  1857. {
  1858. "id": 76,
  1859. "sort": 3,
  1860. "title": "少年中国说(节选)"
  1861. },
  1862. {
  1863. "id": 77,
  1864. "sort": 4,
  1865. "title": "山居秋暝"
  1866. },
  1867. {
  1868. "id": 78,
  1869. "sort": 5,
  1870. "title": "枫桥夜泊"
  1871. },
  1872. {
  1873. "id": 123,
  1874. "sort": 6,
  1875. "title": "早春呈水部张十八员外"
  1876. },
  1877. {
  1878. "id": 81,
  1879. "sort": 7,
  1880. "title": "敏而好学"
  1881. },
  1882. {
  1883. "id": 82,
  1884. "sort": 8,
  1885. "title": "读书有三到"
  1886. },
  1887. {
  1888. "id": 288,
  1889. "sort": 9,
  1890. "title": "白鹭"
  1891. }
  1892. ]
  1893. },
  1894. {
  1895. "miaoguoBookId": 23,
  1896. "bookIdOld": 35,
  1897. "label": "六年级上",
  1898. "type": "ancient",
  1899. "rows": 10,
  1900. "checked": [
  1901. {
  1902. "id": 99,
  1903. "sort": 0,
  1904. "title": "宿建德江"
  1905. },
  1906. {
  1907. "id": 100,
  1908. "sort": 1,
  1909. "title": "六月二十七日望湖楼醉书"
  1910. },
  1911. {
  1912. "id": 101,
  1913. "sort": 2,
  1914. "title": "西江月·夜行黄沙道中"
  1915. },
  1916. {
  1917. "id": 103,
  1918. "sort": 3,
  1919. "title": "七律·长征"
  1920. },
  1921. {
  1922. "id": 106,
  1923. "sort": 4,
  1924. "title": "浪淘沙(其一)"
  1925. },
  1926. {
  1927. "id": 107,
  1928. "sort": 5,
  1929. "title": "江南春"
  1930. },
  1931. {
  1932. "id": 108,
  1933. "sort": 6,
  1934. "title": "书湖阴先生壁"
  1935. },
  1936. {
  1937. "id": 119,
  1938. "sort": 7,
  1939. "title": "两小儿辩日"
  1940. },
  1941. {
  1942. "id": 289,
  1943. "sort": 8,
  1944. "title": "曹冲称象"
  1945. },
  1946. {
  1947. "id": 290,
  1948. "sort": 9,
  1949. "title": "少年闰土(节选)"
  1950. }
  1951. ]
  1952. },
  1953. {
  1954. "miaoguoBookId": 54,
  1955. "bookIdOld": 74,
  1956. "label": "一年级上",
  1957. "type": "daily",
  1958. "rows": 8,
  1959. "checked": [
  1960. {
  1961. "id": 1,
  1962. "sort": 0,
  1963. "title": "咏鹅"
  1964. },
  1965. {
  1966. "id": 3,
  1967. "sort": 1,
  1968. "title": "画"
  1969. },
  1970. {
  1971. "id": 266,
  1972. "sort": 2,
  1973. "title": "一模____ 一心____ 独一____\n十全____ 五颜____ 三头____"
  1974. },
  1975. {
  1976. "id": 4,
  1977. "sort": 3,
  1978. "title": "悯农(其二)"
  1979. },
  1980. {
  1981. "id": 240,
  1982. "sort": 4,
  1983. "title": "一年_______,一日_______。\n一寸_______,寸金_______。"
  1984. },
  1985. {
  1986. "id": 5,
  1987. "sort": 5,
  1988. "title": "古朗月行(节选)"
  1989. },
  1990. {
  1991. "id": 241,
  1992. "sort": 6,
  1993. "title": "种_______,种_______。\n前_______,后_______。\n千_______,始_______。\n百_______,更_______。"
  1994. },
  1995. {
  1996. "id": 6,
  1997. "sort": 7,
  1998. "title": "风"
  1999. }
  2000. ]
  2001. },
  2002. {
  2003. "miaoguoBookId": 56,
  2004. "bookIdOld": 76,
  2005. "label": "二年级上",
  2006. "type": "daily",
  2007. "rows": 8,
  2008. "checked": [
  2009. {
  2010. "id": 14,
  2011. "sort": 0,
  2012. "title": "梅花"
  2013. },
  2014. {
  2015. "id": 224,
  2016. "sort": 1,
  2017. "title": "数九歌"
  2018. },
  2019. {
  2020. "id": 15,
  2021. "sort": 2,
  2022. "title": "小儿垂钓"
  2023. },
  2024. {
  2025. "id": 222,
  2026. "sort": 3,
  2027. "title": "有_______,无_______ \n白_______,杏_______ \n清_______,近_______ \n雾_______,天_______"
  2028. },
  2029. {
  2030. "id": 225,
  2031. "sort": 4,
  2032. "title": "黑_______,白_______。\n一_______,一_______。\n书_______,学_______。"
  2033. },
  2034. {
  2035. "id": 223,
  2036. "sort": 5,
  2037. "title": "有_______ ——《后汉书》\n志_______ ——诸葛亮\n穷_______ ——王勃"
  2038. },
  2039. {
  2040. "id": 19,
  2041. "sort": 6,
  2042. "title": "夜宿山寺"
  2043. },
  2044. {
  2045. "id": 221,
  2046. "sort": 7,
  2047. "title": "己_______ ——《论语》\n与_______ ——《论语》\n不_______ ——《孟子》"
  2048. }
  2049. ]
  2050. },
  2051. {
  2052. "miaoguoBookId": 58,
  2053. "bookIdOld": 78,
  2054. "label": "三年级上",
  2055. "type": "daily",
  2056. "rows": 7,
  2057. "checked": [
  2058. {
  2059. "id": 28,
  2060. "sort": 0,
  2061. "title": "所见"
  2062. },
  2063. {
  2064. "id": 27,
  2065. "sort": 1,
  2066. "title": "舟夜书所见"
  2067. },
  2068. {
  2069. "id": 228,
  2070. "sort": 2,
  2071. "title": "不_______ ——《论语》\n爱_______ ——《墨子》\n仁_______ ——《孟子》\n与_______ ——《荀子》"
  2072. },
  2073. {
  2074. "id": 242,
  2075. "sort": 3,
  2076. "title": "人_______,泰_______。 二_______,其_______。 三_______,顶_______。"
  2077. },
  2078. {
  2079. "id": 35,
  2080. "sort": 4,
  2081. "title": "早发白帝城"
  2082. },
  2083. {
  2084. "id": 36,
  2085. "sort": 5,
  2086. "title": "采莲曲"
  2087. },
  2088. {
  2089. "id": 267,
  2090. "sort": 6,
  2091. "title": "士_______,任_______。——《论语》\n志_______,言_______。——《墨子》\n锲_______,朽_______;锲_______,金_______。——《荀子》"
  2092. }
  2093. ]
  2094. },
  2095. {
  2096. "miaoguoBookId": 60,
  2097. "bookIdOld": 80,
  2098. "label": "四年级上",
  2099. "type": "daily",
  2100. "rows": 7,
  2101. "checked": [
  2102. {
  2103. "id": 30,
  2104. "sort": 0,
  2105. "title": "赠刘景文"
  2106. },
  2107. {
  2108. "id": 229,
  2109. "sort": 1,
  2110. "title": "博_______ ——《中庸》\n智_______ ——王充\n人_______ ——韩愈\n善_______ ——方以智"
  2111. },
  2112. {
  2113. "id": 230,
  2114. "sort": 2,
  2115. "title": "立_______,_______\n二_______,_______\n夏_______,_______\n八_______,雁_______\n一_______,十_______\n八_______,十_______"
  2116. },
  2117. {
  2118. "id": 54,
  2119. "sort": 3,
  2120. "title": "嫦娥"
  2121. },
  2122. {
  2123. "id": 94,
  2124. "sort": 4,
  2125. "title": "黄鹤楼送孟浩然之广陵"
  2126. },
  2127. {
  2128. "id": 231,
  2129. "sort": 5,
  2130. "title": "尺_______,_______。\n仁_______,_______。\n机_______,_______。\n差_______,_______。\n一_______,_______。\n知_______,_______。"
  2131. },
  2132. {
  2133. "id": 58,
  2134. "sort": 6,
  2135. "title": "别董大"
  2136. }
  2137. ]
  2138. },
  2139. {
  2140. "miaoguoBookId": 62,
  2141. "bookIdOld": 82,
  2142. "label": "五年级上",
  2143. "type": "daily",
  2144. "rows": 7,
  2145. "checked": [
  2146. {
  2147. "id": 291,
  2148. "sort": 0,
  2149. "title": "卧_______ 龙_______ 龙_______ 凤_______\n如_______ 如_______ 鹤_______ 一_______\n鼠_______ 抱_______ 狼_______ 狼_______\n狡_______ 呆_______ 虾_______ 黔_______"
  2150. },
  2151. {
  2152. "id": 233,
  2153. "sort": 1,
  2154. "title": "盛_______ ——陶渊明\n莫_______ ——岳飞\n多_______ ——毛泽东"
  2155. },
  2156. {
  2157. "id": 72,
  2158. "sort": 2,
  2159. "title": "乞巧"
  2160. },
  2161. {
  2162. "id": 234,
  2163. "sort": 3,
  2164. "title": "安_______ 国_______ 太_______ 丰_______\n政_______ 人_______ 夜_______ 路_______\n多_______ 流_______ 兵_______ 生_______\n家_______ 哀_______ 民_______ 内_______"
  2165. },
  2166. {
  2167. "id": 114,
  2168. "sort": 4,
  2169. "title": "游子吟"
  2170. },
  2171. {
  2172. "id": 80,
  2173. "sort": 5,
  2174. "title": "渔歌子"
  2175. },
  2176. {
  2177. "id": 84,
  2178. "sort": 6,
  2179. "title": "观书有感(其一)"
  2180. }
  2181. ]
  2182. },
  2183. {
  2184. "miaoguoBookId": 64,
  2185. "bookIdOld": 84,
  2186. "label": "六年级上",
  2187. "type": "daily",
  2188. "rows": 7,
  2189. "checked": [
  2190. {
  2191. "id": 122,
  2192. "sort": 0,
  2193. "title": "江畔独步寻花"
  2194. },
  2195. {
  2196. "id": 236,
  2197. "sort": 1,
  2198. "title": "志_______ ——《论语》\n捐_______ ——曹植\n祖_______ ——李纲\n位_______ ——陆游"
  2199. },
  2200. {
  2201. "id": 85,
  2202. "sort": 2,
  2203. "title": "观书有感(其二)"
  2204. },
  2205. {
  2206. "id": 92,
  2207. "sort": 3,
  2208. "title": "送元二使安西"
  2209. },
  2210. {
  2211. "id": 102,
  2212. "sort": 4,
  2213. "title": "过故人庄"
  2214. },
  2215. {
  2216. "id": 237,
  2217. "sort": 5,
  2218. "title": "五行:_______\n五谷:_______\n五音:_______\n五彩:_______"
  2219. },
  2220. {
  2221. "id": 239,
  2222. "sort": 6,
  2223. "title": "无_______ ——鲁迅《答客诮》\n寄_______ ——鲁迅《自题小像》\n其_______ ——鲁迅《故乡》\n惟_______ ——鲁迅《学界的三魂》\n我_______ ——鲁迅《中国人失掉自信力了吗》"
  2224. }
  2225. ]
  2226. }
  2227. ],
  2228. "detached": [
  2229. {
  2230. "ID": 71,
  2231. "HanziBookID": 0,
  2232. "Title": "蝉"
  2233. },
  2234. {
  2235. "ID": 79,
  2236. "HanziBookID": 0,
  2237. "Title": "长相思"
  2238. },
  2239. {
  2240. "ID": 83,
  2241. "HanziBookID": 0,
  2242. "Title": "士人读书"
  2243. },
  2244. {
  2245. "ID": 104,
  2246. "HanziBookID": 0,
  2247. "Title": "春日"
  2248. },
  2249. {
  2250. "ID": 105,
  2251. "HanziBookID": 0,
  2252. "Title": "回乡偶书"
  2253. },
  2254. {
  2255. "ID": 109,
  2256. "HanziBookID": 0,
  2257. "Title": "伯牙鼓琴"
  2258. },
  2259. {
  2260. "ID": 110,
  2261. "HanziBookID": 0,
  2262. "Title": "书戴嵩画牛"
  2263. },
  2264. {
  2265. "ID": 235,
  2266. "HanziBookID": 0,
  2267. "Title": "克_______ ——《尚书》\n居_______ ——魏征\n由_______ ——司马光\n一_______ ——朱用纯"
  2268. },
  2269. {
  2270. "ID": 238,
  2271. "HanziBookID": 0,
  2272. "Title": "高_______ 天_______\n余_______ 黄_______\n轻_______ 行_______\n巧_______ 惟_______\n画_______ 笔_______\n妙_______ 栩_______"
  2273. }
  2274. ],
  2275. "metadata": [
  2276. {
  2277. "ID": 13,
  2278. "BookIDOld": 25,
  2279. "UnitNum": 1,
  2280. "WordNum": 8
  2281. },
  2282. {
  2283. "ID": 15,
  2284. "BookIDOld": 27,
  2285. "UnitNum": 1,
  2286. "WordNum": 7
  2287. },
  2288. {
  2289. "ID": 17,
  2290. "BookIDOld": 29,
  2291. "UnitNum": 1,
  2292. "WordNum": 9
  2293. },
  2294. {
  2295. "ID": 19,
  2296. "BookIDOld": 31,
  2297. "UnitNum": 1,
  2298. "WordNum": 9
  2299. },
  2300. {
  2301. "ID": 21,
  2302. "BookIDOld": 33,
  2303. "UnitNum": 1,
  2304. "WordNum": 10
  2305. },
  2306. {
  2307. "ID": 23,
  2308. "BookIDOld": 35,
  2309. "UnitNum": 1,
  2310. "WordNum": 10
  2311. },
  2312. {
  2313. "ID": 24,
  2314. "BookIDOld": 36,
  2315. "UnitNum": 1,
  2316. "WordNum": 15
  2317. },
  2318. {
  2319. "ID": 54,
  2320. "BookIDOld": 74,
  2321. "UnitNum": 1,
  2322. "WordNum": 8
  2323. },
  2324. {
  2325. "ID": 56,
  2326. "BookIDOld": 76,
  2327. "UnitNum": 1,
  2328. "WordNum": 8
  2329. },
  2330. {
  2331. "ID": 58,
  2332. "BookIDOld": 78,
  2333. "UnitNum": 1,
  2334. "WordNum": 7
  2335. },
  2336. {
  2337. "ID": 60,
  2338. "BookIDOld": 80,
  2339. "UnitNum": 1,
  2340. "WordNum": 7
  2341. },
  2342. {
  2343. "ID": 61,
  2344. "BookIDOld": 81,
  2345. "UnitNum": 1,
  2346. "WordNum": 6
  2347. },
  2348. {
  2349. "ID": 62,
  2350. "BookIDOld": 82,
  2351. "UnitNum": 1,
  2352. "WordNum": 7
  2353. },
  2354. {
  2355. "ID": 63,
  2356. "BookIDOld": 83,
  2357. "UnitNum": 1,
  2358. "WordNum": 5
  2359. },
  2360. {
  2361. "ID": 64,
  2362. "BookIDOld": 84,
  2363. "UnitNum": 1,
  2364. "WordNum": 7
  2365. }
  2366. ],
  2367. "sourceExistingIds": 80
  2368. }
  2369. }