> For the complete documentation index, see [llms.txt](https://bizmda.gitbook.io/bizmda/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://bizmda.gitbook.io/bizmda/ch1/mdayml.md).

# 应用参数(mda.yml)

应用参数文件为`model/mda.yml`，主要参数为：

| 配置项          | 配置说明                    |
| ------------ | ----------------------- |
| author       | 开发人员名，会标明在各生成文件注释中      |
| email        | 同上，为开发人员邮箱              |
| version      | 版本号                     |
| packageName  | 生成Java代码的包名             |
| sourcePath   | 指明代码生成时的输出目录            |
| resourcePath | 指明资源文件生成时的输出目录          |
| template     | 指明采用哪一套开发框架模板来生成代码和资源文件 |

`mda.yml`样例：

```yaml
#代码作者名
author: Steven
#代码作者邮箱
email: steven@bizmda.com
#版本号
version: V1.0
#生成代码所属java包名
packageName: com.bizmda
#生成代码文件所在目录
sourcePath: tmp/src
#生成资源文件所在目录
resourcePath: tmp/resource
#生成代码所用的模板名
template: Jeecg-Boot
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://bizmda.gitbook.io/bizmda/ch1/mdayml.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
