package com.moral.service; import com.moral.common.bean.PageBean; import com.moral.entity.AccountRole; public interface AccountRoleService { void addOrModify(AccountRole accountRole); int countByExample(PageBean pageBean); PageBean getAccountRoleList(PageBean pageBean); void deleteByIds(Integer... ids); }