<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>

                合規國際互聯網加速 OSASE為企業客戶提供高速穩定SD-WAN國際加速解決方案。 廣告
                ``` CREATE TABLE `bc_marriage_proposals` ( `id` int(11) NOT NULL AUTO_INCREMENT, `user_id` int(11) DEFAULT NULL, `add_time` int(11) DEFAULT NULL, `status` int(2) DEFAULT NULL, `start_time` int(11) DEFAULT NULL, `end_time` int(11) DEFAULT NULL, `top` int(2) DEFAULT NULL COMMENT '值為1是置頂', `pay_states` int(2) DEFAULT NULL COMMENT '1為支付成功', `number` int(30) DEFAULT NULL COMMENT '訂單號', PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=7 DEFAULT CHARSET=utf8 COMMENT='征婚表'; ``` ``` CREATE TABLE `bc_marriage_proposal_tops` ( `id` int(11) NOT NULL AUTO_INCREMENT, `user_id` int(11) DEFAULT NULL, `add_time` int(11) DEFAULT NULL, `status` int(2) DEFAULT NULL, `start_time` int(11) DEFAULT NULL, `end_time` int(11) DEFAULT NULL, `top` int(2) DEFAULT NULL COMMENT '值為1是置頂', `pay_states` int(2) DEFAULT NULL COMMENT '1為支付成功', `number` int(30) DEFAULT NULL COMMENT '訂單號', `prices` decimal(10,2) DEFAULT NULL, `top_prices` decimal(10,2) DEFAULT NULL, `shop_id` int(11) DEFAULT NULL COMMENT '金額列表ID', `mp_id` int(11) DEFAULT NULL COMMENT '征婚訂單ID', PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=66 DEFAULT CHARSET=utf8 COMMENT='征婚'; ``` ``` CREATE TABLE `bc_marriage_proposal_prices` ( `id` int(11) NOT NULL AUTO_INCREMENT, `title` varchar(255) DEFAULT NULL, `describe` varchar(255) DEFAULT NULL COMMENT '描述', `prices` decimal(10,2) DEFAULT NULL, `add_time` int(11) DEFAULT NULL, `status` int(2) DEFAULT NULL, `top_prices` decimal(10,2) DEFAULT NULL COMMENT '置頂金額', `sort` int(11) DEFAULT NULL, `type` int(11) DEFAULT NULL, `number` varchar(30) CHARACTER SET utf8 COLLATE utf8_general_ci DEFAULT NULL COMMENT '訂單號', PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COMMENT='會員價格表'; ``` ``` CREATE TABLE `bc_marriage_proposal_agreements` ( `id` int(11) NOT NULL AUTO_INCREMENT, `user_id` int(11) DEFAULT NULL, `add_time` int(11) DEFAULT NULL, `status` int(2) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=utf8 COMMENT='設計 是否勾選同意'; ``` > 1、查詢是否同意了協議 請求地址: https://你的域名/api/marriage_proposal/agreement 請求方法:get 請求數據:無 返回數據: 定義10001 為錯誤 200為成功 ``` { "success": true, "code": "200", "msg": "數據請求成功!", "obj": { "data": { "user_id": "申請者ID", "agreement": "1", //0為 未同意 1為同意 } } } ``` > 2、點擊同意了協議 調用該接口 請求地址: https://你的域名/api/marriage_proposal/agreement_save 請求方法:get 請求數據:無 返回數據: 定義10001 為錯誤 200為成功 ``` { "success": true, "code": "200", "msg": "數據保存成功!", "obj": { "data": { "user_id": "申請者ID", "agreement": "1", //0為 未同意 1為同意 } } } ``` > 3、獲取價格列表 請求地址: https://你的域名/api/marriage_proposal/price_data 請求方法:get 請求數據:無 返回數據: 定義10001 為錯誤 200為成功 ``` { "success":?true, "code":?"200", "msg":?"數據獲取成功", "list":?[?{ "id":?1, "title":?"三個月", "describe":?"購買征婚", "price":?"100.00", "add_time":?null, "states":?1, "top_price":?"68.00", "sort":?null ????????}, ????] } ``` > 4、征婚發起接口 請求地址: https://你的域名/api/marriage_proposal/marriage_proposal/order_save 請求方法:post 請求數據: ``` shop_id=價格ID ``` 返回數據: 定義10001 為錯誤 200為成功 ``` { "success":?true, "code":?"200", "msg":?"數據保存成功!", "obj":?{ "data":?{ "shop_id":?"1", "number":?"zh202110301054048287", "states":?0, "add_time":?1635562444, "user_id":?0, "prices":?"100.00", "top_prices":?"68.00" ????????} ????} } ``` > 5、征婚置頂接口 請求地址: https://你的域名/api/marriage_proposal/marriage_proposal/top_save 請求方法:post 請求數據: ``` shop_id=價格ID mp_id=婚慶訂單ID ``` 返回數據: 定義10001 為錯誤 200為成功 ``` { "success":?true, "code":?"200", "msg":?"數據保存成功!", "obj":?{ "data":?{ "shop_id":?"1", "number":?"zh202110301054048287", "states":?0, "add_time":?1635562444, "user_id":?0, "prices":?"100.00", "top_prices":?"68.00" ????????} ????} } ``` > 6、征婚下線接口 請求地址: https://你的域名/api/marriage_proposal/offline 請求方法:get 請求數據: ``` id=數據ID ``` 返回數據: 定義10001 為錯誤 200為成功 ``` { "success":?true, "code":?"200", "msg":?"數據保存成功!", "obj":?{ "data":?{ ????????} ????} } ``` >7、征婚前端調用 請求地址: https://你的域名/api/marriage_proposal/data 請求方法:get 請求數據:無 返回數據: 定義10001 為錯誤 200為成功 ``` { "success":?true, "code":?"200", "msg":?"數據獲取成功", "obj":?[ ????????{ "id":?100074, "gender":?1, //1:男士,2:女士 "nickname":?"魔掌如來", "education":?6, //學歷 "district":?"10.162.2030", "district_cn":?"江蘇.南京.棲霞區", "photo":?"https://njca.stwxs.com/uploads/original/20211025/a2d53acb01e0ec79054e33060c67b2d5.png", "start_time":?1635836368 ????????} ????] } ```
                  <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>

                              哎呀哎呀视频在线观看