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.
51 lines
1.1 KiB
51 lines
1.1 KiB
package com.zc.business.service;
|
|
|
|
import com.alibaba.fastjson.JSONObject;
|
|
import com.ruoyi.common.core.domain.AjaxResult;
|
|
import com.zc.business.domain.DcInfoBoardTemplate;
|
|
|
|
import java.util.List;
|
|
import java.util.Map;
|
|
|
|
/**
|
|
* 情报板模板Service接口
|
|
*
|
|
* @author 刘方堃
|
|
* @date 2021-11-30
|
|
*/
|
|
public interface IDcInfoBoardTemplateService {
|
|
|
|
Map<String, List<DcInfoBoardTemplate>> getAllVmsTemplate(String category, String devicePixel);
|
|
|
|
/**
|
|
* 新增情报板模板
|
|
*
|
|
* @param dcInfoBoardTemplate 情报板模板
|
|
* @return 结果
|
|
*/
|
|
int insertSdVmsTemplate(DcInfoBoardTemplate dcInfoBoardTemplate);
|
|
|
|
/**
|
|
* 修改情报板模板
|
|
*
|
|
* @param dcInfoBoardTemplate 情报板模板
|
|
* @return 结果
|
|
*/
|
|
int updateSdVmsTemplate(DcInfoBoardTemplate dcInfoBoardTemplate);
|
|
|
|
/**
|
|
* 批量删除情报板模板
|
|
*
|
|
* @param ids 需要删除的情报板模板ID
|
|
* @return 结果
|
|
*/
|
|
int deleteSdVmsTemplateById(Long ids);
|
|
|
|
/**
|
|
* 模板分类排序
|
|
*
|
|
* @param param
|
|
* @return 结果
|
|
*/
|
|
AjaxResult updateCategorySort(Map<String,Object> param);
|
|
}
|
|
|