WeixinUser.php 370 B

123456789101112131415161718192021222324252627282930
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: zhengmingwei
  5. * Date: 2020/3/8
  6. * Time: 7:20 PM
  7. */
  8. namespace addons\unishop\model;
  9. use fast\Random;
  10. use think\Db;
  11. use think\Exception;
  12. use think\Model;
  13. /**
  14. * 扩展用户表
  15. * Class UserExtend
  16. * @package addons\unishop\model
  17. */
  18. class WeixinUser extends Model
  19. {
  20. // 表名
  21. protected $name = 'weixin_user';
  22. }