Commit ae63861918eaa685380698006732b0e46e3985ac

Authored by zichun
1 parent 353d74ce

docs: align en index.md scope with build state on cleanup branch

Reflect xly-src cleanup branch:
- xlyPlat* modules dropped (except xlyPlatConstant, kept as shared utility)
- xlyTestService, xlyTestController dropped
- xlyFile, xlyRxtx already excluded; now explicitly listed
- Note xlyPlatConstant as misnamed shared-utility (xlyPersist imports MultiThreadServer + TimeContant)
Showing 1 changed file with 5 additions and 1 deletions
en/docs/index.md
... ... @@ -33,13 +33,17 @@ which Reference chapter you go deep on.
33 33  
34 34 ## What's out of scope
35 35  
36   -- The B2B printing-platform layer (`plat_*` tables, `xlyPlat*` modules).
  36 +- The B2B printing-platform layer (`plat_*` tables, all `xlyPlat*` modules **except** `xlyPlatConstant` — see below).
37 37 - AI / LLM features (`ai_*` tables, `AiController`) — too new, still moving.
38 38 - Face recognition (`xlyFace`) — niche.
  39 +- File-management module (`xlyFile`) and serial-port module (`xlyRxtx`) — niche / hardware-adjacent.
  40 +- Test scaffolding modules (`xlyTestService`, `xlyTestController`) — historical, not part of the framework runtime.
39 41 - Per-tenant schema drift between `xlyweberp_*` databases — wiki targets one schema.
40 42 - Backup tables (`*_bak`, `*0302`, etc.).
41 43 - The MongoDB document store (`spring.data.mongodb.uri` in the yaml profiles, document classes under `xlyEntity/.../mongo/`). Every `@Document` class is `PLAT_*`-named and every `MongoTemplate` caller lives in an `xlyPlat*` module — so MongoDB is part of the plat tier above. The framework layer this wiki covers is MySQL-only.
42 44  
  45 +> **Note on `xlyPlatConstant`.** It carries the `xlyPlat*` prefix but is in scope: `xlyPersist` imports two utility classes from it (`com.xly.xlyplatconstant.contant.thread.MultiThreadServer`, `com.xly.xlyplatconstant.contant.TimeContant`). Treat it as a misnamed shared-utility module, not a platform-tier module.
  46 +
43 47 ## How to fix something in this wiki
44 48  
45 49 Edit the markdown file. That is the wiki. Static HTML is generated from these `.md`
... ...