企业🤖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": "参数错误!" } ```