## 模塊化
組件使用模塊化管理,比如微信菜單、消息管理、紅包管理都是獨立模塊,系統耦合度非常低。
直接使用模塊入口類操作
```
$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|粉絲管理|