AuthDao.java 585 Bytes
/*
 * Copyright (c) 2014 www.diligrp.com All rights reserved.
 * 本软件源代码版权归----所有,未经许可不得任意复制与传播.
 */
package com.dili.titan.dao;

import com.dili.titan.dao.base.BaseDao;
import com.dili.titan.domain.Auth;

import java.util.List;

/**
 * AuthDao 接口
 * @author dev-center
 * @since 2014-10-29
 */
public interface AuthDao extends BaseDao<Auth,Long>{

    /**
     * 根据运营范围查询当前正在生效的认证
     * @param scope 运营范围
     * @return
     */
    public List<Auth> findNormalAuthByScope(Integer scope);
}