Commit 162995f5 by fudahua

好友关系

parent c216ecf7
......@@ -90,4 +90,12 @@ public interface WxEnterpriseRelatedApiService {
*/
public List<String> listStoreIdByWxEnterpriseId(String wxEnterpriseId);
/**
* 查询绑定得门店id
*
* @param wxEnterpriseId
* @return
*/
public List<String> listStoreIdByEnterpriseId(String wxEnterpriseId, String enterpriseId);
}
......@@ -463,4 +463,10 @@ public class WxEnterpriseRelatedApiServiceImpl implements WxEnterpriseRelatedApi
List<String> list = storeRangeService.listStoreIdByWxEnterpriseId(wxEnterpriseId, null);
return list;
}
@Override
public List<String> listStoreIdByEnterpriseId(String wxEnterpriseId, String enterpriseId) {
List<String> list = storeRangeService.listStoreIdByWxEnterpriseId(wxEnterpriseId, enterpriseId);
return list;
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment