WxMsg.php 265 B

123456789101112
  1. <?php
  2. namespace App\Lib\Msg;
  3. class WxMsg{
  4. function updateMsg($from,$content,$type){
  5. $model=new \App\Models\WxMsg();
  6. $model->content=$content;
  7. $model->fromUser=$from;
  8. $model->msgType=$type;
  9. $model->save();
  10. }
  11. }