多应用+插件架构,代码干净,二开方便,首家独创一键云编译技术,文档视频完善,免费商用码云13.8K 广告
# 客户利润统计列表 #### 请求地址 admin/Profit/getProfitList 接口类型:需身份校验 #### body参数 | 名称 | 是否必须 | 类型 | 默认值 | 备注 | | --- | --- | --- | --- | --- | | token| true | string | null | token | | page| false| string | null | 当前页 | | pageSize| false| string | null | 每页显示条数 | | customerName|false| string | null | 客户名称 | |startTime|false| string | null | 开始时间 | |endTime|false| string | null | 结束时间 | | isExport| false | string | null | 是否导出Excel(0:否 1:是) | **备注:** isExport采用get方式传参时需要考虑 customerName | startTime | endTime 传参 #### 状态码 | Code | Msg | | --- | --- | | 0 | 成功 | | -1 | 失败 | #### 返回参数 | 名称 | 备注 | | --- | --- | | name | 企业名称 | | salesPrice | 销售总价 | |costPrice | 成本总价 | |num | 有效订单 | |profit | 毛利 | #### 成功返回 ~~~ { "code": 0, "msg": "操作成功", "data": { "total": 17, "pageSize": 15, "start": 0, "root": [ { "id": 19, "name": "广州子轩网络科技有限公司", "salesPrice": "150675.150", "costPrice": "146646.000", "num": 20527, "profit": "4029.150" } ], "totalPage": 2, "currPage": 1 } } ~~~