xiangpei
5 天以前 2f68e5600f0b60d6f8d170f4536e1fc410662ea7
manager-api/src/main/java/cn/lili/controller/lmk/CustomerController.java
@@ -38,8 +38,13 @@
        return customerService.getStoreSelectOptions();
    }
    @ApiOperation(value = "获得客户详情")
    @GetMapping("/{id}")
    public Result getCustomerInfo(@PathVariable String id){
        return customerService.getMember(id);
    }
    @ApiOperation(value = "会员分页列表")
    @ApiOperation(value = "客户分页列表")
    @GetMapping
    public Result getByPage(CustomerQuery customerQuery) {
        return customerService.getMemberPage(customerQuery);