admin
2020-05-20 98b1a0affd69bbe63223c21fdd2c404e8bedfccb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
package com.yeshi.fanli.service.inter.user.vip;
 
import java.util.Date;
import java.util.List;
 
import com.yeshi.fanli.entity.bus.user.vip.UserVipConfig;
import com.yeshi.fanli.exception.user.vip.UserVipConfigException;
 
 
public interface UserVipConfigService {
 
    /**
     * 根据key值查询
     * 
     * @param key
     * @return
     */
    public UserVipConfig getByKey(String key);
 
    /**
     * 根据key值 获取value
     * 
     * @param key
     * @return
     */
    public String getValueByKey(String key);
 
    
    public UserVipConfig getByKey(String key, Date date);
 
    
    public String getValueByKey(String key, Date date);
 
    public void delete(List<Long> idsList);
 
    public List<UserVipConfig> query(int page, int pageSize, String key);
 
    public long count(String key);
 
    public void save(UserVipConfig record) throws UserVipConfigException;
}