IComprehensiveQuery.java 294 B

1234567891011121314
  1. package com.java110.user.bmo.owner;
  2. import org.springframework.http.ResponseEntity;
  3. public interface IComprehensiveQuery {
  4. /**
  5. * 综合查询
  6. *
  7. * @return
  8. */
  9. ResponseEntity<String> query(String communityId, String searchValue, String searchType, String userId);
  10. }