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

                企業??AI智能體構建引擎,智能編排和調試,一鍵部署,支持知識庫和私有化部署方案 廣告
                [TOC] ## 列表 ~~~[api] get:/cooperation_store <<< success { "code": 0, "data": { "data": [ { "id": 1, "title": "青羊區分店",//門店名 "address": "青羊區800號",//門店地址 "name": "王大錘",//店長名 "phone": "13333333333",//店長電話 "status": 0,//狀態 0 正常 1 凍結 "county": "青羊區",//所在區 "city": "成都市",//所在市 "province": "四川省",//所在省 "sale_num": 2//門店下的銷售數量 } ], "currentPage": 1, "pageNumber": 10, "count": 1 } } <<< error { "code": -1, "msg": "參數錯誤!" } ~~~ ## 列表分頁 ~~~[api] get:/cooperation_store/pag *int:currentPage=1#當前頁 *int:pageNumber=10#頁碼 <<< success { "code": 0, "data": { "data": [ { "id": 1, "title": "青羊區分店", "address": "青羊區800號", "name": "王大錘", "phone": "13333333333", "status": 0, "county": "青羊區", "city": "成都市", "province": "四川省", "sale_num": 2 } ] } } <<< error { "code": -1, "msg": "參數錯誤!" } ~~~ ## 搜索 ~~~[api] get:/cooperation_store/search *string:search=搜索內容#門店名 | 店長姓名 | 店長手機號 <<< success { "code": 0, "data": { "data": [ { "id": 1, "title": "青羊區分店", "address": "青羊區800號", "name": "王大錘", "phone": "13333333333", "status": 0, "county": "青羊區", "city": "成都市", "province": "四川省", "sale_num": 2 } ] } } <<< error { "code": -1, "msg": "參數錯誤!" } ~~~ ## 統計列表 ~~~[api] get:/cooperation_store/statistics *int:id=1#門店 id <<< success { "code": 0, "msg": { "data": [ { "rent": "18",//總租金 "deposit": "3",//總押金 "date": "2018-01-08",//時間 "total": "300",//總傭金 "available": 200,//可提傭金 "used": 100//已提傭金 } ], "currentPage": 1,//當前頁 "pageNumber": 10,//頁碼 "count": 0//總條數 } } <<< error { "code": -1, "msg": "參數錯誤!" } ~~~ ## 統計列表分頁 ~~~[api] get:/cooperation_store/statisticsPag *int:id=1#門店 id *int:currentPage=1#當前頁 *int:pageNumber=10#頁碼 <<< success { "code": 0, "msg": { "data": [ { "rent": "18",//總租金 "deposit": "3",//總押金 "date": "2018-01-08",//時間 "total": "300",//總傭金 "available": 200,//可提傭金 "used": 100//申請中的傭金 } ] } } <<< error { "code": -1, "msg": "參數錯誤!" } ~~~ ## 統計搜索 ~~~[api] get:/cooperation_store/statisticsSearch *int:id=1#門店 id *string:search=2018-02-02# 按照格式的年份 <<< success { "code": 0, "msg": { "data": [ { "rent": "18",//總租金 "deposit": "3",//總押金 "date": "2018-01-08",//時間 "total": "300",//總傭金 "available": 200,//可提傭金 "used": 100//申請中的傭金 } ] } } <<< error { "code": -1, "msg": "參數錯誤!" } ~~~ ## 統計篩選 >[info] 搜索最多返回三條數據 ~~~[api] get:/cooperation_store/statisticsSearch *int:id=1#門店 id *int:search=0# 0 日視圖 1 年視圖 2 月視圖 <<< success { "code": 0, "msg": { "data": [ { "rent": "18",//總租金 "deposit": "3",//總押金 "date": "2018-01-08",//時間 "total": "300",//總傭金 "available": 200,//可提傭金 "used": 100//申請中的傭金 } ] } } <<< error { "code": -1, "msg": "參數錯誤!" } ~~~ ## 提現記錄列表 ~~~[api] get:/store_cash/outsideIndex *int:id=1#門店 id <<< success { "code": 0, "msg": { "data": [ { "id":1, "create_time":"2018-01-02 00:00:00",//申請提現時間 "status":0,//提現狀態 0 申請中 1 提現成功 2 提現失敗 "sum":10 // 提現金額 } ], "currentPage": 1,//當前頁 "pageNumber": 10,//頁碼 "count": 0//總條數 } } <<< error { "code": -1, "msg": "參數錯誤!" } ~~~ ## 提現記錄列表分頁 * 請求地址: `/store_cash/outsideIndexPag` * 請求方式: get * 請求參數: | 字段名 | 字段類型 | 字段長度 | 必填 | 字段說明 | | --- | --- | --- | --- | --- | | `id` | int | 11 | `是` | 門店id | | `currentPage` | int | 11 | `是` | 當前頁 | | `pageNumber` | int | 11 | `是` | 頁碼 | * 成功返回: ```json { "code": 0, "msg": { "data": [ { "id":1, "create_time":"2018-01-02 00:00:00",//申請提現時間 "status":0,//提現狀態 0 申請中 1 提現成功 2 提現失敗 "sum":10 // 提現金額 } ] } } ``` * 失敗返回: ```json { "code": -1, "msg": "參數錯誤!" } ```
                  <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>

                              哎呀哎呀视频在线观看