get_project_info
Retrieve project details including start date, description, investment amount, and current progress by providing the project name.
Instructions
根据项目名称查询项目基本信息,包括开始日期、简介、投资金额和当前进度
Input Schema
Name | Required | Description | Default |
---|---|---|---|
projectName | Yes | 要查询的项目名称 |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"projectName": {
"description": "要查询的项目名称",
"type": "string"
}
},
"required": [
"projectName"
],
"type": "object"
}