admin
2021-09-18 2e61c91e0e5cd76ed7174aa31e10b8522cd81fde
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.yeshi.fanli.service.inter.user;
 
import com.yeshi.fanli.entity.SystemFunction;
import com.yeshi.fanli.entity.bus.user.UserFunctionsLimit;
 
import java.util.Date;
 
/**
 * @author Administrator
 * @title: UserFunctionsLimitService
 * @projectName fanli-server
 * @description: 用户功能限制服务
 * @date 2021/9/1319:19
 */
public interface UserFunctionsLimitService {
 
    public void save(UserFunctionsLimit limit) throws Exception;
 
    public boolean isLimit(Long uid, SystemFunction function, Date date);
 
 
}