IGetCommunityStoreInfoSMO.java 828 B

123456789101112131415161718192021222324252627
  1. package com.java110.boot.smo;
  2. import com.alibaba.fastjson.JSONObject;
  3. import com.java110.core.context.IPageData;
  4. import com.java110.vo.ResultVo;
  5. import org.springframework.web.client.RestTemplate;
  6. public interface IGetCommunityStoreInfoSMO {
  7. ResultVo getStoreInfo(IPageData pd, RestTemplate restTemplate, String userId);
  8. ResultVo getStoreEnterCommunitys(IPageData pd, String storeId, String storeTypeCd, RestTemplate restTemplate);
  9. /**
  10. * 查询用户权限
  11. * @param pd
  12. * @param storeId
  13. * @param storeTypeCd
  14. * @param restTemplate
  15. * @return
  16. */
  17. ResultVo getUserPrivileges(IPageData pd, String storeId, String storeTypeCd, RestTemplate restTemplate);
  18. ResultVo checkUserHasResourceListener(RestTemplate restTemplate, IPageData pd, JSONObject paramIn, String cacheKey);
  19. }