<ruby id="bdb3f"></ruby>

    <p id="bdb3f"><cite id="bdb3f"></cite></p>

      <p id="bdb3f"><cite id="bdb3f"><th id="bdb3f"></th></cite></p><p id="bdb3f"></p>
        <p id="bdb3f"><cite id="bdb3f"></cite></p>

          <pre id="bdb3f"></pre>
          <pre id="bdb3f"><del id="bdb3f"><thead id="bdb3f"></thead></del></pre>

          <ruby id="bdb3f"><mark id="bdb3f"></mark></ruby><ruby id="bdb3f"></ruby>
          <pre id="bdb3f"><pre id="bdb3f"><mark id="bdb3f"></mark></pre></pre><output id="bdb3f"></output><p id="bdb3f"></p><p id="bdb3f"></p>

          <pre id="bdb3f"><del id="bdb3f"><progress id="bdb3f"></progress></del></pre>

                <ruby id="bdb3f"></ruby>

                ??一站式輕松地調用各大LLM模型接口,支持GPT4、智譜、豆包、星火、月之暗面及文生圖、文生視頻 廣告
                ~~~[sql] CREATE TABLE `xi_stores` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `dealer_id` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '商家ID', `cate_id` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '分類ID', `auditd_id` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '審核者ID', `type` tinyint(1) unsigned NOT NULL DEFAULT '1' COMMENT '門店類型,1=>B2C,2=>O2O,3=>O2O(支持預約配送)', `name` varchar(64) NOT NULL DEFAULT '' COMMENT '名稱', `thumb` varchar(255) NOT NULL DEFAULT 'http://oss.dgyouduo.com/static/img/no-image.png' COMMENT '縮略圖', `banner` varchar(512) NOT NULL DEFAULT 'a:1:{i:0;s:53:"http://oss.dgyouduo.com/static/img/no-image-16x10.png";}' COMMENT '橫幅', `notice` varchar(32) NOT NULL DEFAULT '歡迎光臨,很高興為您服務' COMMENT '公告', `mobile` varchar(16) NOT NULL DEFAULT '' COMMENT '手機號碼', `realname` varchar(16) NOT NULL COMMENT '真實姓名', `idcard_number` varchar(32) NOT NULL COMMENT '身份證號碼', `idcard_image` varchar(255) NOT NULL COMMENT '身份證圖片', `business_license_number` varchar(64) NOT NULL COMMENT '營業執照號碼', `business_license_image` varchar(255) NOT NULL COMMENT '營業執照圖片', `industry_additional_image` varchar(255) NOT NULL COMMENT '行業附加圖片', `province` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '省份', `city` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '城市', `district` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '地區', `twon` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '鄉鎮', `address` varchar(128) NOT NULL COMMENT '地址', `longitude` varchar(16) NOT NULL COMMENT '經度', `latitude` varchar(16) NOT NULL DEFAULT '' COMMENT '緯度', `business_hours_start` varchar(8) NOT NULL DEFAULT '7' COMMENT '開始營業時間', `business_hours_end` varchar(8) NOT NULL DEFAULT '24' COMMENT '結束營業時間', `template_style` tinyint(1) unsigned NOT NULL DEFAULT '1' COMMENT '模板樣式,1=>1列(O2O),2=>2列(B2C)', `delivery_scope` tinyint(1) unsigned NOT NULL DEFAULT '1' COMMENT '配送范圍(O2O商家),1=>直徑,2=>區域畫點', `delivery_setting` text NOT NULL COMMENT '配送設定', `delivery_time` tinyint(2) unsigned NOT NULL DEFAULT '0' COMMENT '配送時間限定(小時,O2O商家)', `delivery_goods_min_price` decimal(10,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '配送商品最小價格', `delivery_price` decimal(10,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '配送價格', `sort` tinyint(3) unsigned NOT NULL DEFAULT '0' COMMENT '排序', `sales` int(11) NOT NULL COMMENT '銷量', `is_support_two` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '是否支持二級分類', `is_support_express` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '是否支持快遞', `is_support_self_pickup` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '是否支持自取', `is_support_delivery` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '是否支持配送', `is_support_make_delivery` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '是否支持預約配送', `is_self_delivery` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '是否自配送', `is_audit` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '是否審核,0=>未審核,1=>審核通過,2=>審核駁回', `is_trash` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '刪除,0=>否,1=>是', `status` tinyint(1) unsigned NOT NULL DEFAULT '1' COMMENT '狀態,0=>禁用,1=>啟用', `created_at` int(11) unsigned NOT NULL DEFAULT '1451577600' COMMENT '創建時間', `updated_at` int(11) unsigned NOT NULL DEFAULT '1451577600' COMMENT '更新時間', `auditd_at` int(11) unsigned NOT NULL DEFAULT '1451577600' COMMENT '審核時間', PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8mb4 COMMENT='門店'; ~~~ ~~~[sql] CREATE TABLE `xi_stores_audit_log` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `stores_id` int(11) unsigned NOT NULL COMMENT '門店ID', `admin_id` int(11) unsigned NOT NULL COMMENT '用戶ID', `operate` tinyint(3) unsigned NOT NULL DEFAULT '0' COMMENT '操作,1=>審核通過,2=>審核駁回', `is_trash` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '刪除,0=>否,1=>是', `status` tinyint(1) unsigned NOT NULL DEFAULT '1' COMMENT '狀態,0=>禁用,1=>啟用', `created_at` int(11) unsigned NOT NULL DEFAULT '1451577600' COMMENT '創建時間', `updated_at` int(11) unsigned NOT NULL DEFAULT '1451577600' COMMENT '更新時間', PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8mb4 COMMENT='門店審核日志'; ~~~ ~~~[sql] CREATE TABLE `xi_stores_category` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `parent_id` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '父ID', `parent_id_path` varchar(32) NOT NULL DEFAULT '' COMMENT '父ID路徑', `level` tinyint(3) unsigned NOT NULL DEFAULT '0' COMMENT '級別', `type` tinyint(1) unsigned NOT NULL DEFAULT '1' COMMENT '門店類型,1=>B2C,2=>O2O,3=>O2O(支持預約配送)', `name` varchar(32) NOT NULL DEFAULT '' COMMENT '名稱', `thumb` varchar(255) NOT NULL DEFAULT 'http://oss.dgyouduo.com/static/img/no-image.png' COMMENT '縮略圖', `template_style` tinyint(1) NOT NULL DEFAULT '1' COMMENT '模板樣式,1=>1列(O2O),2=>2列(B2C)', `delivery_scope` tinyint(1) unsigned NOT NULL DEFAULT '1' COMMENT '配送范圍(O2O商家),1=>直徑,2=>區域畫點', `delivery_setting` varchar(255) NOT NULL COMMENT '配送設定', `delivery_time` tinyint(2) unsigned NOT NULL DEFAULT '0' COMMENT '配送時間限定(小時,O2O商家)', `sort` tinyint(3) unsigned NOT NULL DEFAULT '0' COMMENT '排序', `is_support_two` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '是否支持二級分類', `is_support_express` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '是否支持快遞', `is_support_self_pickup` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '是否支持自取', `is_support_delivery` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '是否支持配送', `is_support_make_delivery` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '是否支持預約配送', `is_self_delivery` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '是否自配送', `is_trash` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '刪除,0=>否,1=>是', `status` tinyint(1) unsigned NOT NULL DEFAULT '1' COMMENT '狀態,0=>禁用,1=>啟用', `created_at` int(11) unsigned NOT NULL DEFAULT '1451577600' COMMENT '創建時間', `updated_at` int(11) unsigned NOT NULL DEFAULT '1451577600' COMMENT '更新時間', PRIMARY KEY (`id`), UNIQUE KEY `name` (`name`,`parent_id`,`type`,`is_trash`) ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8mb4 COMMENT='門店分類'; ~~~ ~~~[sql] CREATE TABLE `xi_stores_distributor` ( `stores_id` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '門店ID', `distributor_id` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '配送員ID', `created_at` int(11) unsigned NOT NULL DEFAULT '1451577600' COMMENT '創建時間', KEY `stores_id` (`stores_id`), KEY `distributor_id` (`distributor_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='門店配送員'; ~~~
                  <ruby id="bdb3f"></ruby>

                  <p id="bdb3f"><cite id="bdb3f"></cite></p>

                    <p id="bdb3f"><cite id="bdb3f"><th id="bdb3f"></th></cite></p><p id="bdb3f"></p>
                      <p id="bdb3f"><cite id="bdb3f"></cite></p>

                        <pre id="bdb3f"></pre>
                        <pre id="bdb3f"><del id="bdb3f"><thead id="bdb3f"></thead></del></pre>

                        <ruby id="bdb3f"><mark id="bdb3f"></mark></ruby><ruby id="bdb3f"></ruby>
                        <pre id="bdb3f"><pre id="bdb3f"><mark id="bdb3f"></mark></pre></pre><output id="bdb3f"></output><p id="bdb3f"></p><p id="bdb3f"></p>

                        <pre id="bdb3f"><del id="bdb3f"><progress id="bdb3f"></progress></del></pre>

                              <ruby id="bdb3f"></ruby>

                              哎呀哎呀视频在线观看