java110
2021-10-13 ba1c0ad6cffaa8a6288a4e66d0598d16f1cccc10
service-user/src/main/java/com/java110/user/api/OwnerApi.java
@@ -76,8 +76,9 @@
    public ResponseEntity<String> comprehensiveQuery(@RequestParam(value = "communityId") String communityId,
                                                     @RequestParam(value = "searchValue") String searchValue,
                                                     @RequestParam(value = "searchType") String searchType,
                                                     @RequestHeader(value = "user-id") String userId) {
        return comprehensiveQueryImpl.query(communityId, searchValue, searchType, userId);
                                                     @RequestHeader(value = "user-id") String userId,
                                                     @RequestHeader(value = "store-id") String storeId) {
        return comprehensiveQueryImpl.query(communityId, searchValue, searchType, userId,storeId);
    }
    /**