567a783eba8a46e99aa681e4889d83500674213d.svn-base 1.0 KB

1234567891011121314151617181920212223242526272829303132
  1. package cn.com.goldenwater.dcproj.service;
  2. import cn.com.goldenwater.core.service.CrudService;
  3. import cn.com.goldenwater.dcproj.dto.AttCountryDto;
  4. import cn.com.goldenwater.dcproj.model.BisInspVillqhRgstr;
  5. import cn.com.goldenwater.dcproj.param.BisInspVillqhRgstrParam;
  6. import cn.com.goldenwater.dcproj.param.TypeParam;
  7. import com.github.pagehelper.PageInfo;
  8. import io.swagger.annotations.ApiParam;
  9. import org.springframework.web.bind.annotation.PathVariable;
  10. import javax.servlet.http.HttpServletResponse;
  11. import java.util.List;
  12. import java.util.Map;
  13. /**
  14. * @author lhc
  15. * @date 2021-2-1
  16. */
  17. public interface BisInspVillqhRgstrService extends CrudService<BisInspVillqhRgstr, BisInspVillqhRgstrParam> {
  18. // ------------------------- 自定方法 -------------------------
  19. Map<String, Object> findNode(String code, String regstrId);
  20. List<AttCountryDto> findCheckTree(String code, String regstrId);
  21. void updateState(Map<String, Object> map);
  22. PageInfo findObjPageByType(TypeParam typeParam, HttpServletResponse response);
  23. }