在好例子网,分享、交流、成长!
您当前所在位置:首页Python 开发实例Python语言基础 → 2023最新ChatGPT智能AI机器人微信小程序源码_带部署教程

2023最新ChatGPT智能AI机器人微信小程序源码_带部署教程

Python语言基础

下载此实例
  • 开发语言:Python
  • 实例大小:8.31M
  • 下载次数:102
  • 浏览次数:400
  • 发布时间:2023-02-25
  • 实例类别:Python语言基础
  • 发 布 人:xiaohai023
  • 文件格式:.zip
  • 所需积分:2

实例介绍

【实例简介】2023最新ChatGPT智能AI机器人微信小程序源码_带部署教程

【实例截图】

from clipboard

from clipboard

from clipboard

from clipboard

【核心代码】

.
├── README.txt
├── flask-code
│   ├── 2.txt
│   ├── Flask-2.2.2.dist-info
│   │   ├── INSTALLER
│   │   ├── LICENSE.rst
│   │   ├── METADATA
│   │   ├── RECORD
│   │   ├── REQUESTED
│   │   ├── WHEEL
│   │   ├── entry_points.txt
│   │   └── top_level.txt
│   ├── Jinja2-3.1.2.dist-info
│   │   ├── INSTALLER
│   │   ├── LICENSE.rst
│   │   ├── METADATA
│   │   ├── RECORD
│   │   ├── WHEEL
│   │   ├── entry_points.txt
│   │   └── top_level.txt
│   ├── MarkupSafe-2.1.1.dist-info
│   │   ├── INSTALLER
│   │   ├── LICENSE.rst
│   │   ├── METADATA
│   │   ├── RECORD
│   │   ├── WHEEL
│   │   └── top_level.txt
│   ├── Werkzeug-2.2.2.dist-info
│   │   ├── INSTALLER
│   │   ├── LICENSE.rst
│   │   ├── METADATA
│   │   ├── RECORD
│   │   ├── WHEEL
│   │   └── top_level.txt
│   ├── bin
│   │   └── flask
│   ├── click
│   │   ├── __init__.py
│   │   ├── __pycache__
│   │   │   ├── __init__.cpython-39.pyc
│   │   │   ├── _compat.cpython-39.pyc
│   │   │   ├── _termui_impl.cpython-39.pyc
│   │   │   ├── _textwrap.cpython-39.pyc
│   │   │   ├── _winconsole.cpython-39.pyc
│   │   │   ├── core.cpython-39.pyc
│   │   │   ├── decorators.cpython-39.pyc
│   │   │   ├── exceptions.cpython-39.pyc
│   │   │   ├── formatting.cpython-39.pyc
│   │   │   ├── globals.cpython-39.pyc
│   │   │   ├── parser.cpython-39.pyc
│   │   │   ├── shell_completion.cpython-39.pyc
│   │   │   ├── termui.cpython-39.pyc
│   │   │   ├── testing.cpython-39.pyc
│   │   │   ├── types.cpython-39.pyc
│   │   │   └── utils.cpython-39.pyc
│   │   ├── _compat.py
│   │   ├── _termui_impl.py
│   │   ├── _textwrap.py
│   │   ├── _winconsole.py
│   │   ├── core.py
│   │   ├── decorators.py
│   │   ├── exceptions.py
│   │   ├── formatting.py
│   │   ├── globals.py
│   │   ├── parser.py
│   │   ├── py.typed
│   │   ├── shell_completion.py
│   │   ├── termui.py
│   │   ├── testing.py
│   │   ├── types.py
│   │   └── utils.py
│   ├── click-8.1.3.dist-info
│   │   ├── INSTALLER
│   │   ├── LICENSE.rst
│   │   ├── METADATA
│   │   ├── RECORD
│   │   ├── WHEEL
│   │   └── top_level.txt
│   ├── dockerfile
│   ├── flask
│   │   ├── __init__.py
│   │   ├── __main__.py
│   │   ├── __pycache__
│   │   │   ├── __init__.cpython-39.pyc
│   │   │   ├── __main__.cpython-39.pyc
│   │   │   ├── app.cpython-39.pyc
│   │   │   ├── blueprints.cpython-39.pyc
│   │   │   ├── cli.cpython-39.pyc
│   │   │   ├── config.cpython-39.pyc
│   │   │   ├── ctx.cpython-39.pyc
│   │   │   ├── debughelpers.cpython-39.pyc
│   │   │   ├── globals.cpython-39.pyc
│   │   │   ├── helpers.cpython-39.pyc
│   │   │   ├── logging.cpython-39.pyc
│   │   │   ├── scaffold.cpython-39.pyc
│   │   │   ├── sessions.cpython-39.pyc
│   │   │   ├── signals.cpython-39.pyc
│   │   │   ├── templating.cpython-39.pyc
│   │   │   ├── testing.cpython-39.pyc
│   │   │   ├── typing.cpython-39.pyc
│   │   │   ├── views.cpython-39.pyc
│   │   │   └── wrappers.cpython-39.pyc
│   │   ├── app.py
│   │   ├── blueprints.py
│   │   ├── cli.py
│   │   ├── config.py
│   │   ├── ctx.py
│   │   ├── debughelpers.py
│   │   ├── globals.py
│   │   ├── helpers.py
│   │   ├── json
│   │   │   ├── __init__.py
│   │   │   ├── __pycache__
│   │   │   │   ├── __init__.cpython-39.pyc
│   │   │   │   ├── provider.cpython-39.pyc
│   │   │   │   └── tag.cpython-39.pyc
│   │   │   ├── provider.py
│   │   │   └── tag.py
│   │   ├── logging.py
│   │   ├── py.typed
│   │   ├── scaffold.py
│   │   ├── sessions.py
│   │   ├── signals.py
│   │   ├── templating.py
│   │   ├── testing.py
│   │   ├── typing.py
│   │   ├── views.py
│   │   └── wrappers.py
│   ├── importlib_metadata
│   │   ├── __init__.py
│   │   ├── __pycache__
│   │   │   ├── __init__.cpython-39.pyc
│   │   │   ├── _adapters.cpython-39.pyc
│   │   │   ├── _collections.cpython-39.pyc
│   │   │   ├── _compat.cpython-39.pyc
│   │   │   ├── _functools.cpython-39.pyc
│   │   │   ├── _itertools.cpython-39.pyc
│   │   │   ├── _meta.cpython-39.pyc
│   │   │   ├── _py39compat.cpython-39.pyc
│   │   │   └── _text.cpython-39.pyc
│   │   ├── _adapters.py
│   │   ├── _collections.py
│   │   ├── _compat.py
│   │   ├── _functools.py
│   │   ├── _itertools.py
│   │   ├── _meta.py
│   │   ├── _py39compat.py
│   │   ├── _text.py
│   │   └── py.typed
│   ├── importlib_metadata-5.1.0.dist-info
│   │   ├── INSTALLER
│   │   ├── LICENSE
│   │   ├── METADATA
│   │   ├── RECORD
│   │   ├── WHEEL
│   │   └── top_level.txt
│   ├── index.py
│   ├── itsdangerous
│   │   ├── __init__.py
│   │   ├── __pycache__
│   │   │   ├── __init__.cpython-39.pyc
│   │   │   ├── _json.cpython-39.pyc
│   │   │   ├── encoding.cpython-39.pyc
│   │   │   ├── exc.cpython-39.pyc
│   │   │   ├── serializer.cpython-39.pyc
│   │   │   ├── signer.cpython-39.pyc
│   │   │   ├── timed.cpython-39.pyc
│   │   │   └── url_safe.cpython-39.pyc
│   │   ├── _json.py
│   │   ├── encoding.py
│   │   ├── exc.py
│   │   ├── py.typed
│   │   ├── serializer.py
│   │   ├── signer.py
│   │   ├── timed.py
│   │   └── url_safe.py
│   ├── itsdangerous-2.1.2.dist-info
│   │   ├── INSTALLER
│   │   ├── LICENSE.rst
│   │   ├── METADATA
│   │   ├── RECORD
│   │   ├── WHEEL
│   │   └── top_level.txt
│   ├── jinja2
│   │   ├── __init__.py
│   │   ├── __pycache__
│   │   │   ├── __init__.cpython-39.pyc
│   │   │   ├── _identifier.cpython-39.pyc
│   │   │   ├── async_utils.cpython-39.pyc
│   │   │   ├── bccache.cpython-39.pyc
│   │   │   ├── compiler.cpython-39.pyc
│   │   │   ├── constants.cpython-39.pyc
│   │   │   ├── debug.cpython-39.pyc
│   │   │   ├── defaults.cpython-39.pyc
│   │   │   ├── environment.cpython-39.pyc
│   │   │   ├── exceptions.cpython-39.pyc
│   │   │   ├── ext.cpython-39.pyc
│   │   │   ├── filters.cpython-39.pyc
│   │   │   ├── idtracking.cpython-39.pyc
│   │   │   ├── lexer.cpython-39.pyc
│   │   │   ├── loaders.cpython-39.pyc
│   │   │   ├── meta.cpython-39.pyc
│   │   │   ├── nativetypes.cpython-39.pyc
│   │   │   ├── nodes.cpython-39.pyc
│   │   │   ├── optimizer.cpython-39.pyc
│   │   │   ├── parser.cpython-39.pyc
│   │   │   ├── runtime.cpython-39.pyc
│   │   │   ├── sandbox.cpython-39.pyc
│   │   │   ├── tests.cpython-39.pyc
│   │   │   ├── utils.cpython-39.pyc
│   │   │   └── visitor.cpython-39.pyc
│   │   ├── _identifier.py
│   │   ├── async_utils.py
│   │   ├── bccache.py
│   │   ├── compiler.py
│   │   ├── constants.py
│   │   ├── debug.py
│   │   ├── defaults.py
│   │   ├── environment.py
│   │   ├── exceptions.py
│   │   ├── ext.py
│   │   ├── filters.py
│   │   ├── idtracking.py
│   │   ├── lexer.py
│   │   ├── loaders.py
│   │   ├── meta.py
│   │   ├── nativetypes.py
│   │   ├── nodes.py
│   │   ├── optimizer.py
│   │   ├── parser.py
│   │   ├── py.typed
│   │   ├── runtime.py
│   │   ├── sandbox.py
│   │   ├── tests.py
│   │   ├── utils.py
│   │   └── visitor.py
│   ├── markupsafe
│   │   ├── __init__.py
│   │   ├── __pycache__
│   │   │   ├── __init__.cpython-39.pyc
│   │   │   └── _native.cpython-39.pyc
│   │   ├── _native.py
│   │   ├── _speedups.c
│   │   ├── _speedups.cpython-39-x86_64-linux-gnu.so
│   │   ├── _speedups.pyi
│   │   └── py.typed
│   ├── requests
│   │   ├── __init__.py
│   │   ├── __pycache__
│   │   │   ├── __init__.cpython-39.pyc
│   │   │   ├── __version__.cpython-39.pyc
│   │   │   ├── _internal_utils.cpython-39.pyc
│   │   │   ├── adapters.cpython-39.pyc
│   │   │   ├── api.cpython-39.pyc
│   │   │   ├── auth.cpython-39.pyc
│   │   │   ├── certs.cpython-39.pyc
│   │   │   ├── compat.cpython-39.pyc
│   │   │   ├── cookies.cpython-39.pyc
│   │   │   ├── exceptions.cpython-39.pyc
│   │   │   ├── help.cpython-39.pyc
│   │   │   ├── hooks.cpython-39.pyc
│   │   │   ├── models.cpython-39.pyc
│   │   │   ├── packages.cpython-39.pyc
│   │   │   ├── sessions.cpython-39.pyc
│   │   │   ├── status_codes.cpython-39.pyc
│   │   │   ├── structures.cpython-39.pyc
│   │   │   └── utils.cpython-39.pyc
│   │   ├── __version__.py
│   │   ├── _internal_utils.py
│   │   ├── adapters.py
│   │   ├── api.py
│   │   ├── auth.py
│   │   ├── certs.py
│   │   ├── compat.py
│   │   ├── cookies.py
│   │   ├── exceptions.py
│   │   ├── help.py
│   │   ├── hooks.py
│   │   ├── models.py
│   │   ├── packages.py
│   │   ├── sessions.py
│   │   ├── status_codes.py
│   │   ├── structures.py
│   │   └── utils.py
│   ├── requirements.txt
│   ├── werkzeug
│   │   ├── __init__.py
│   │   ├── __pycache__
│   │   │   ├── __init__.cpython-39.pyc
│   │   │   ├── _internal.cpython-39.pyc
│   │   │   ├── _reloader.cpython-39.pyc
│   │   │   ├── datastructures.cpython-39.pyc
│   │   │   ├── exceptions.cpython-39.pyc
│   │   │   ├── formparser.cpython-39.pyc
│   │   │   ├── http.cpython-39.pyc
│   │   │   ├── local.cpython-39.pyc
│   │   │   ├── security.cpython-39.pyc
│   │   │   ├── serving.cpython-39.pyc
│   │   │   ├── test.cpython-39.pyc
│   │   │   ├── testapp.cpython-39.pyc
│   │   │   ├── urls.cpython-39.pyc
│   │   │   ├── user_agent.cpython-39.pyc
│   │   │   ├── utils.cpython-39.pyc
│   │   │   └── wsgi.cpython-39.pyc
│   │   ├── _internal.py
│   │   ├── _reloader.py
│   │   ├── datastructures.py
│   │   ├── datastructures.pyi
│   │   ├── debug
│   │   │   ├── __init__.py
│   │   │   ├── __pycache__
│   │   │   │   ├── __init__.cpython-39.pyc
│   │   │   │   ├── console.cpython-39.pyc
│   │   │   │   ├── repr.cpython-39.pyc
│   │   │   │   └── tbtools.cpython-39.pyc
│   │   │   ├── console.py
│   │   │   ├── repr.py
│   │   │   ├── shared
│   │   │   │   ├── ICON_LICENSE.md
│   │   │   │   ├── console.png
│   │   │   │   ├── debugger.js
│   │   │   │   ├── less.png
│   │   │   │   ├── more.png
│   │   │   │   └── style.css
│   │   │   └── tbtools.py
│   │   ├── exceptions.py
│   │   ├── formparser.py
│   │   ├── http.py
│   │   ├── local.py
│   │   ├── middleware
│   │   │   ├── __init__.py
│   │   │   ├── __pycache__
│   │   │   │   ├── __init__.cpython-39.pyc
│   │   │   │   ├── dispatcher.cpython-39.pyc
│   │   │   │   ├── http_proxy.cpython-39.pyc
│   │   │   │   ├── lint.cpython-39.pyc
│   │   │   │   ├── profiler.cpython-39.pyc
│   │   │   │   ├── proxy_fix.cpython-39.pyc
│   │   │   │   └── shared_data.cpython-39.pyc
│   │   │   ├── dispatcher.py
│   │   │   ├── http_proxy.py
│   │   │   ├── lint.py
│   │   │   ├── profiler.py
│   │   │   ├── proxy_fix.py
│   │   │   └── shared_data.py
│   │   ├── py.typed
│   │   ├── routing
│   │   │   ├── __init__.py
│   │   │   ├── __pycache__
│   │   │   │   ├── __init__.cpython-39.pyc
│   │   │   │   ├── converters.cpython-39.pyc
│   │   │   │   ├── exceptions.cpython-39.pyc
│   │   │   │   ├── map.cpython-39.pyc
│   │   │   │   ├── matcher.cpython-39.pyc
│   │   │   │   └── rules.cpython-39.pyc
│   │   │   ├── converters.py
│   │   │   ├── exceptions.py
│   │   │   ├── map.py
│   │   │   ├── matcher.py
│   │   │   └── rules.py
│   │   ├── sansio
│   │   │   ├── __init__.py
│   │   │   ├── __pycache__
│   │   │   │   ├── __init__.cpython-39.pyc
│   │   │   │   ├── http.cpython-39.pyc
│   │   │   │   ├── multipart.cpython-39.pyc
│   │   │   │   ├── request.cpython-39.pyc
│   │   │   │   ├── response.cpython-39.pyc
│   │   │   │   └── utils.cpython-39.pyc
│   │   │   ├── http.py
│   │   │   ├── multipart.py
│   │   │   ├── request.py
│   │   │   ├── response.py
│   │   │   └── utils.py
│   │   ├── security.py
│   │   ├── serving.py
│   │   ├── test.py
│   │   ├── testapp.py
│   │   ├── urls.py
│   │   ├── user_agent.py
│   │   ├── utils.py
│   │   ├── wrappers
│   │   │   ├── __init__.py
│   │   │   ├── __pycache__
│   │   │   │   ├── __init__.cpython-39.pyc
│   │   │   │   ├── request.cpython-39.pyc
│   │   │   │   └── response.cpython-39.pyc
│   │   │   ├── request.py
│   │   │   └── response.py
│   │   └── wsgi.py
│   ├── zipp
│   │   ├── __init__.py
│   │   ├── __pycache__
│   │   │   ├── __init__.cpython-39.pyc
│   │   │   └── py310compat.cpython-39.pyc
│   │   └── py310compat.py
│   └── zipp-3.11.0.dist-info
│       ├── INSTALLER
│       ├── LICENSE
│       ├── METADATA
│       ├── RECORD
│       ├── WHEEL
│       └── top_level.txt
├── flask-code.zip
├── 前端
│   ├── App.vue
│   ├── index.html
│   ├── main.js
│   ├── manifest.json
│   ├── pages
│   │   └── index
│   │       └── index.vue
│   ├── pages.json
│   ├── static
│   │   └── openai.png
│   ├── uni.scss
│   ├── uni_modules
│   │   ├── uni-popup
│   │   │   ├── changelog.md
│   │   │   ├── components
│   │   │   │   ├── uni-popup
│   │   │   │   │   ├── i18n
│   │   │   │   │   │   ├── en.json
│   │   │   │   │   │   ├── index.js
│   │   │   │   │   │   ├── zh-Hans.json
│   │   │   │   │   │   └── zh-Hant.json
│   │   │   │   │   ├── keypress.js
│   │   │   │   │   ├── popup.js
│   │   │   │   │   └── uni-popup.vue
│   │   │   │   ├── uni-popup-dialog
│   │   │   │   │   ├── keypress.js
│   │   │   │   │   └── uni-popup-dialog.vue
│   │   │   │   ├── uni-popup-message
│   │   │   │   │   └── uni-popup-message.vue
│   │   │   │   └── uni-popup-share
│   │   │   │       └── uni-popup-share.vue
│   │   │   ├── package.json
│   │   │   └── readme.md
│   │   ├── uni-scss
│   │   │   ├── changelog.md
│   │   │   ├── index.scss
│   │   │   ├── package.json
│   │   │   ├── readme.md
│   │   │   ├── styles
│   │   │   │   ├── index.scss
│   │   │   │   ├── setting
│   │   │   │   │   ├── _border.scss
│   │   │   │   │   ├── _color.scss
│   │   │   │   │   ├── _radius.scss
│   │   │   │   │   ├── _space.scss
│   │   │   │   │   ├── _styles.scss
│   │   │   │   │   ├── _text.scss
│   │   │   │   │   └── _variables.scss
│   │   │   │   └── tools
│   │   │   │       └── functions.scss
│   │   │   ├── theme.scss
│   │   │   └── variables.scss
│   │   ├── uni-transition
│   │   │   ├── changelog.md
│   │   │   ├── components
│   │   │   │   └── uni-transition
│   │   │   │       ├── createAnimation.js
│   │   │   │       └── uni-transition.vue
│   │   │   ├── package.json
│   │   │   └── readme.md
│   │   └── zero-loading
│   │       ├── changelog.md
│   │       ├── components
│   │       │   └── zero-loading
│   │       │       ├── static
│   │       │       │   ├── loading-atom.vue
│   │       │       │   ├── loading-bounce.vue
│   │       │       │   ├── loading-circle.vue
│   │       │       │   ├── loading-eyes.vue
│   │       │       │   ├── loading-gear.vue
│   │       │       │   ├── loading-love.vue
│   │       │       │   ├── loading-pulse.vue
│   │       │       │   ├── loading-sun.vue
│   │       │       │   ├── loading-sword.vue
│   │       │       │   └── loading-triangle.vue
│   │       │       └── zero-loading.vue
│   │       ├── package.json
│   │       └── readme.md
│   └── unpackage
│       └── dist
│           └── dev
│               └── mp-weixin
│                   ├── app.js
│                   ├── app.json
│                   ├── app.wxss
│                   ├── common
│                   │   ├── main.js
│                   │   ├── main.wxss
│                   │   ├── runtime.js
│                   │   └── vendor.js
│                   ├── pages
│                   │   └── index
│                   │       ├── index.js
│                   │       ├── index.json
│                   │       ├── index.wxml
│                   │       └── index.wxss
│                   ├── project.config.json
│                   ├── project.private.config.json
│                   ├── static
│                   │   └── openai.png
│                   └── uni_modules
│                       └── zero-loading
│                           └── components
│                               └── zero-loading
│                                   ├── static
│                                   │   ├── loading-atom.js
│                                   │   ├── loading-atom.json
│                                   │   ├── loading-atom.wxml
│                                   │   ├── loading-atom.wxss
│                                   │   ├── loading-bounce.js
│                                   │   ├── loading-bounce.json
│                                   │   ├── loading-bounce.wxml
│                                   │   ├── loading-bounce.wxss
│                                   │   ├── loading-circle.js
│                                   │   ├── loading-circle.json
│                                   │   ├── loading-circle.wxml
│                                   │   ├── loading-circle.wxss
│                                   │   ├── loading-eyes.js
│                                   │   ├── loading-eyes.json
│                                   │   ├── loading-eyes.wxml
│                                   │   ├── loading-eyes.wxss
│                                   │   ├── loading-gear.js
│                                   │   ├── loading-gear.json
│                                   │   ├── loading-gear.wxml
│                                   │   ├── loading-gear.wxss
│                                   │   ├── loading-love.js
│                                   │   ├── loading-love.json
│                                   │   ├── loading-love.wxml
│                                   │   ├── loading-love.wxss
│                                   │   ├── loading-pulse.js
│                                   │   ├── loading-pulse.json
│                                   │   ├── loading-pulse.wxml
│                                   │   ├── loading-pulse.wxss
│                                   │   ├── loading-sun.js
│                                   │   ├── loading-sun.json
│                                   │   ├── loading-sun.wxml
│                                   │   ├── loading-sun.wxss
│                                   │   ├── loading-sword.js
│                                   │   ├── loading-sword.json
│                                   │   ├── loading-sword.wxml
│                                   │   ├── loading-sword.wxss
│                                   │   ├── loading-triangle.js
│                                   │   ├── loading-triangle.json
│                                   │   ├── loading-triangle.wxml
│                                   │   └── loading-triangle.wxss
│                                   ├── zero-loading.js
│                                   ├── zero-loading.json
│                                   ├── zero-loading.wxml
│                                   └── zero-loading.wxss
├── 前端.zip
├── 免责声明.txt
├── 好例子网_2023最新ChatGPT智能AI机器人微信小程序源码_带部署教程.zip
├── 刀客源码网.html
├── 后端安装教程.docx
└── 前端安装教程.txt

77 directories, 483 files


实例下载地址

2023最新ChatGPT智能AI机器人微信小程序源码_带部署教程

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警