Commit 00e7da9b by 墨竹

feat:获取好办门店id

parent 6d1177de
......@@ -294,5 +294,17 @@ public interface StaffApiService {
* @date 2022-05-27 09:43:00
*/
boolean isSuperAdmin(String clerkId);
/**
* 获取到好办的企业门店id
*
* @param enterpriseId 企业标识
* @param wxEnterpriseId wx企业标识
* @return {@link List }<{@link String }>
* @author mozhu
* @date 2022-05-30 11:46:08
*/
List<String> getHaoBanStoreRolesByEnterpriseId(String enterpriseId,String wxEnterpriseId);
}
......@@ -1363,6 +1363,11 @@ public class StaffApiServiceImpl implements StaffApiService {
return superAdmin != null && superAdmin == 1;
}
@Override
public List<String> getHaoBanStoreRolesByEnterpriseId(String enterpriseId, String wxEnterpriseId) {
return storeRangeService.listStoreIdByWxEnterpriseId(wxEnterpriseId, enterpriseId);
}
/**
* 门店筛选器id企业端获取gic门店id列表
*
......
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