You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
1.1 KiB
52 lines
1.1 KiB
package com.zc.business.mapper;
|
|
|
|
|
|
import com.zc.business.domain.DcInfoBoardTemplate;
|
|
import org.apache.ibatis.annotations.Param;
|
|
|
|
import java.util.List;
|
|
|
|
/**
|
|
* 情报板模板Mapper接口
|
|
*
|
|
*/
|
|
public interface DcInfoBoardTemplateMapper
|
|
{
|
|
|
|
public List<DcInfoBoardTemplate> selectTemplateList(@Param("category") String category, @Param("devicePixel") String devicePixel);
|
|
|
|
/**
|
|
* 新增情报板模板
|
|
*
|
|
* @param dcInfoBoardTemplate 情报板模板
|
|
* @return 结果
|
|
*/
|
|
public int insertSdVmsTemplate(DcInfoBoardTemplate dcInfoBoardTemplate);
|
|
|
|
/**
|
|
* 修改情报板模板
|
|
*
|
|
* @param dcInfoBoardTemplate 情报板模板
|
|
* @return 结果
|
|
*/
|
|
public int updateSdVmsTemplate(DcInfoBoardTemplate dcInfoBoardTemplate);
|
|
|
|
/**
|
|
* 删除情报板模板
|
|
*
|
|
* @param id 情报板模板ID
|
|
* @return 结果
|
|
*/
|
|
public int deleteSdVmsTemplateById(Long id);
|
|
|
|
/**
|
|
* 删除情报板模板
|
|
*
|
|
* @param id 需要删除的数据ID
|
|
* @return 结果
|
|
*/
|
|
public int deleteSdVmsTemplateByIds(Long id);
|
|
|
|
public Long selectSdVmsTemplateId();
|
|
|
|
}
|
|
|