BottomService.java 329 Bytes
Newer Older
licc's avatar
licc committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
package cn.wisenergy.service.app;

import cn.wisenergy.common.utils.R;
import cn.wisenergy.model.vo.UserQueryVo;

/**
 * @author 86187
 */
public interface BottomService {

    /**
     * 获取向下层级
     *
     * @param queryVo 条数
     * @return true or false
     */
    R<Boolean> getBottom(UserQueryVo queryVo);
}