UserLimitService.java 447 Bytes
Newer Older
licc's avatar
licc committed
1 2 3 4 5 6 7 8 9 10
package cn.wisenergy.service.app;

import cn.wisenergy.common.utils.R;
import cn.wisenergy.model.app.UserLimit;


/**
*@ Description: 用户查询次数接口定义
*@ Author     : 86187
*@ Date       : 2021/1/14 9:33
licc's avatar
licc committed
11 12
 * @author 86187
 */
licc's avatar
licc committed
13 14 15 16 17 18 19 20
public interface UserLimitService {
    /**
     * 获取用户查询次数信息
     * @param userId 用户id
     * @return 用户查询次数信息
     */
    R<UserLimit> getByUserId(Integer userId);
}