package com.yeshi.fanli.service.inter.homemodule;
|
|
import java.util.List;
|
|
import com.yeshi.fanli.entity.bus.homemodule.SuperSpecial;
|
|
/**
|
* 专题-系统
|
*
|
* @author Administrator
|
*
|
*/
|
public interface SuperSpecialService {
|
|
public int deleteByPrimaryKey(Long id);
|
|
public int insert(SuperSpecial record);
|
|
public int insertSelective(SuperSpecial record);
|
|
public SuperSpecial selectByPrimaryKey(Long id);
|
|
public int updateByPrimaryKeySelective(SuperSpecial record);
|
|
public int updateByPrimaryKey(SuperSpecial record);
|
|
|
/**
|
* 根据系统id、标识 获取品牌模块
|
* @param systemId 系统id
|
* @param card 品牌唯一标识
|
* @return
|
*/
|
List<SuperSpecial> listBySystemAndCard(Long systemId, String card);
|
|
|
/**
|
* 根据系统id、标识 获取品牌模块 + 缓存
|
* @param systemId 系统id
|
* @param card 品牌唯一标识
|
* @return
|
*/
|
List<SuperSpecial> listBySystemAndCardCache(Long systemId, String card);
|
|
}
|