package com.yeshi.fanli.service.inter.homemodule;
|
|
import java.util.List;
|
|
import com.yeshi.fanli.entity.bus.homemodule.SpecialCard;
|
|
/**
|
* 专题标识
|
*
|
* @author Administrator
|
*
|
*/
|
public interface SpecialCardService {
|
|
public int deleteByPrimaryKey(Long id);
|
|
public int insert(SpecialCard record);
|
|
public int insertSelective(SpecialCard record);
|
|
public SpecialCard selectByPrimaryKey(Long id);
|
|
public int updateByPrimaryKeySelective(SpecialCard record);
|
|
public int updateByPrimaryKey(SpecialCard record);
|
|
public List<SpecialCard> listQuery(long start, int count, String key, Integer sort);
|
|
public long countlistQuery(String key);
|
|
/**
|
* 根据id批量删除
|
* @param list
|
* @return
|
* @throws Exception
|
*/
|
public int deleteBatchByPrimaryKey(List<Long> list) throws Exception;
|
|
}
|