package com.reyun.service; import com.alibaba.fastjson.JSONObject; import com.reyun.model.Account; import com.reyun.model.AdsAccount; import java.util.List; public interface AdsAccountService { List<JSONObject> findApp(AdsAccount adsAccount); AdsAccount findByAccount(Long rootParent); void updatePermissionById(Long id, int i); String checkAccount(Account account); }