|
|
@@ -21,7 +21,6 @@ import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
|
|
|
|
-import javax.validation.constraints.NotBlank;
|
|
|
import java.util.HashMap;
|
|
|
import java.util.List;
|
|
|
import java.util.Map;
|
|
|
@@ -62,11 +61,7 @@ public class CustomerController extends BaseController {
|
|
|
map.put("accountNum",accountNum);
|
|
|
}
|
|
|
//客户列表查询
|
|
|
- Page<Map> page = new Page<>(request.getPageNum(), 10);
|
|
|
IPage<Map> list = this.iCustomerService.getCustomer(request,map);
|
|
|
-
|
|
|
- //getCustomer(map,page);
|
|
|
-// Map<String, Object> dataTable = getDataTable(list);
|
|
|
return R.ok(list);
|
|
|
}
|
|
|
|