package com.yeshi.fanli.service.inter.homemodule;
|
|
import java.util.List;
|
|
import com.yeshi.fanli.entity.bus.homemodule.SuperSpecialCard;
|
|
/**
|
* 专题-系统
|
*
|
* @author Administrator
|
*
|
*/
|
public interface SuperSpecialCardService {
|
|
public int deleteByPrimaryKey(Long id);
|
|
public int insert(SuperSpecialCard record);
|
|
public int insertSelective(SuperSpecialCard record);
|
|
public SuperSpecialCard selectByPrimaryKey(Long id);
|
|
public int updateByPrimaryKeySelective(SuperSpecialCard record);
|
|
public int updateByPrimaryKey(SuperSpecialCard record);
|
|
public int deleteBatchByCardId(List<Long> list);
|
|
/**
|
* 删除系统
|
* @param cardId
|
* @param systemId
|
*/
|
public void deletebyCardIdAndSystemId(Long cardId, Long systemId) throws Exception ;
|
|
/**
|
* 查询系统
|
* @param cardId
|
* @param systemId
|
*/
|
public List<SuperSpecialCard> querybyCardIdAndSystemId(Long cardId, Long systemId) throws Exception ;
|
|
}
|