RealControAuthorityService.java
324 Bytes
package com.bsth.service.sys;
import com.bsth.entity.sys.RealControAuthority;
import com.bsth.service.BaseService;
/**
* Created by panzhao on 2017/2/14.
*/
public interface RealControAuthorityService extends BaseService<RealControAuthority, Integer> {
RealControAuthority findByUserId(Integer userId);
}