package com.yeshi.fanli.service.inter.hongbao;
|
|
import java.util.List;
|
import java.util.Map;
|
|
import org.springframework.cache.annotation.CacheEvict;
|
import org.springframework.cache.annotation.Cacheable;
|
|
import com.yeshi.fanli.entity.bus.user.HongBaoManage;
|
|
|
public interface HongBaoManageService {
|
|
public List<HongBaoManage> getHongBaoManage();
|
|
@CacheEvict(value="homeBaoManage",allEntries=true)
|
public void update(List<HongBaoManage> hongBaoManageList);
|
|
|
public String get(String key);
|
|
|
public Map<String, String> convertMap();
|
|
}
|