admin
2019-01-08 c84d8ecd97d111b01db9cfd807300d0491a95bc8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package com.yeshi.fanli.service;
 
import java.util.List;
 
import org.springframework.cache.annotation.CacheEvict;
 
import com.yeshi.fanli.entity.bus.recommend.MaskKey;
 
public interface MaskKeyService {
 
    public List<MaskKey> getMaskKeys(String key, int page);
 
    public int getCount(String key);
    @CacheEvict(value="maskKeyCache",allEntries=true)
    public long addMaskKey(String key);
    @CacheEvict(value="maskKeyCache",allEntries=true)
    public void delete(long id);
 
    public List<MaskKey> getAll();
    
    public String maskAction(String content);
    
    public void addMaskKeys(String path);
}