## 模块化
组件使用模块化管理,比如微信菜单、消息管理、红包管理都是独立模块,系统耦合度非常低。
直接使用模块入口类操作
```
$message = new Houdunwang\WeChat\Build\Message\Message;
$message->text('发送文本消息');
```
**部分模块列表**
| 模块 | 说明 |
|---|---|
|Houdunwang\WeChat\Build\Message\Message | 消息管理 |
|Houdunwang\WeChat\Build\Button\Button |微信按钮 |
|Houdunwang\WeChat\Build\Cash\Cash |微信红包 |
|Houdunwang\WeChat\Build\Customservice\Customservice| 客服接口|
|Houdunwang\WeChat\Build\Js\Js|JSSDK处理|
|Houdunwang\WeChat\Build\Material\Material|素材管理|
|Houdunwang\WeChat\Build\Oauth\Oauth|网页授权|
|Houdunwang\WeChat\Build\Pay\Pay|微信支付|
|Houdunwang\WeChat\Build\Qrcode\Qrcode|二维码|
|Houdunwang\WeChat\Build\Shorturl\Shorturl|短链接|
|Houdunwang\WeChat\Build\User\User|粉丝管理|