>[danger] 自动提现设定
```
CREATE TABLE `ims_ewei_shop_ext_autopay` (
`one` tinyint(4) NOT NULL DEFAULT '0' COMMENT '一级分销商是否自动提现',
`two` tinyint(4) NOT NULL DEFAULT '0' COMMENT '二级分销商是否自动提现',
`three` tinyint(4) NOT NULL DEFAULT '0' COMMENT '三级分销商是否自动提现',
`mchid` varchar(32) NOT NULL DEFAULT '' COMMENT '商户号',
`mchsecret` varchar(255) NOT NULL DEFAULT '' COMMENT '商户api秘钥',
`appid` varchar(255) NOT NULL DEFAULT '' COMMENT '公众号appid',
`appsecret` varchar(255) NOT NULL DEFAULT '' COMMENT '公众号开发者秘钥',
`openid` varchar(255) NOT NULL DEFAULT '' COMMENT '用于测试企业付款到零钱的会员openid'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='扩展表,自动提现设定';
INSERT INTO `shop_cztech_wang`.`ims_ewei_shop_ext_autopay`(`one`, `two`, `three`, `mchid`, `mchsecret`, `appid`, `appsecret`, `openid`) VALUES (1, 0, 0, '', '', '', '', '');
```