|
|
@@ -5,6 +5,7 @@ import com.wx.blink.base.common.domain.ResponseDTO;
|
|
|
import com.wx.blink.base.common.util.BlinkRequestUtil;
|
|
|
import com.wx.blink.common.qry.BlinkCustomerQry;
|
|
|
import com.wx.blink.common.vo.BlinkCustomerCreateVO;
|
|
|
+import com.wx.blink.common.vo.BlinkCustomerStatisticsVO;
|
|
|
import com.wx.blink.portal.CustomerApi;
|
|
|
import io.swagger.v3.oas.annotations.Operation;
|
|
|
import org.springframework.web.bind.annotation.*;
|
|
|
@@ -39,12 +40,16 @@ public class PortalCustomerController {
|
|
|
return customerApi.supportsCustomerQueryPage(qry);
|
|
|
}
|
|
|
|
|
|
+ @Operation(summary = "客户查询列表表头统计数据接口")
|
|
|
+ @GetMapping("/portal/customer/statistics/info")
|
|
|
+ public ResponseDTO<JSONObject> supportsStatisticsInfo(BlinkCustomerQry qry) {
|
|
|
+ return customerApi.supportsStatisticsInfo(qry);
|
|
|
+ }
|
|
|
+
|
|
|
@GetMapping(value = "/portal/customer/{id}")
|
|
|
@Operation(summary = "服务商查询客户明细接口")
|
|
|
ResponseDTO<JSONObject> supportsCustomerSingleQuery(@PathVariable String id) {
|
|
|
return customerApi.supportsCustomerSingleQuery(id);
|
|
|
}
|
|
|
-
|
|
|
-
|
|
|
}
|
|
|
|