| 123456789101112131415161718192021222324252627282930 | <?php/** * Created by PhpStorm. * User: zhengmingwei * Date: 2020/3/8 * Time: 7:20 PM */namespace addons\unishop\model;use fast\Random;use think\Db;use think\Exception;use think\Model;/** * 扩展用户表 * Class UserExtend * @package addons\unishop\model */class WeixinUser extends Model{    // 表名    protected $name = 'weixin_user';}
 |