From b53845a9fc7e755f03293e31c86cd0f74efab9f0 Mon Sep 17 00:00:00 2001 From: ycl Date: Mon, 23 Jun 2025 16:01:21 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=20llms-full.txt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- llms-full.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/llms-full.txt b/llms-full.txt index c2e3cb1..51d43c8 100644 --- a/llms-full.txt +++ b/llms-full.txt @@ -15,7 +15,7 @@ - **定义与用途:** Enum用来表达一些常量值的集合,可被其他模块使用,可被用来做为字段的类型 - **关键属性/配置:** 名称(以_enum结尾),枚举值列表(全大写字母+下划线) - **与其他元素关系:** 枚举可以作为其他对象(Entity、Dto、Vo、Bto、Qto、Eo)的字段类型使用。 -- **设计元素的表达:** +- **Enum设计元素的表达:** - 以Json格式表达,json schema 定义如下 ```json { @@ -45,7 +45,7 @@ - **定义与用途:** EO为一种POJO对象结构,可被其他模块使用,可被用来做为实体字段的类型。 - **关键属性/配置:** 名称(以_eo结尾)。EO的字段类型只能为基本类型(含List)、EO、Enum,其他类型不允许。 - **与其他元素关系:** 可以作为其他对象(Entity、Dto、Vo、Bto、Qto)的字段类型使用,同时一个Eo中可以嵌套其他EO作为字段类型。 -- **设计元素的表达:** +- **Eo设计元素的表达:** - 以Json格式表达,Json Schema定义及如下 ```json {