CompanyAuthorityService.java 478 Bytes
package com.bsth.service.sys;

import com.bsth.entity.sys.CompanyAuthority;
import com.bsth.entity.sys.SysUser;
import com.bsth.service.BaseService;

import java.util.List;
import java.util.Map;

/**
 * Created by panzhao on 2016/11/22.
 */
public interface CompanyAuthorityService extends BaseService<CompanyAuthority, Integer> {
    Map<String,Object> save(Integer roleId, List<CompanyAuthority> list);

    List<CompanyAuthority> findByUser(SysUser user);
}