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 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 getAll(); public String maskAction(String content); public void addMaskKeys(String path); }