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.
27 lines
472 B
27 lines
472 B
package com.zc.business.service;
|
|
|
|
import com.ruoyi.common.core.domain.AjaxResult;
|
|
import com.zc.business.domain.DcBoardPublish;
|
|
|
|
import java.util.List;
|
|
import java.util.Map;
|
|
|
|
/**
|
|
* 情报板Service接口
|
|
*
|
|
* @author ruoyi
|
|
* @date 2024-01-03
|
|
*/
|
|
public interface IDcBoardService
|
|
{
|
|
|
|
/**
|
|
* 情报板发布
|
|
*/
|
|
AjaxResult publish(DcBoardPublish dcBoardPublish);
|
|
|
|
/**
|
|
* 情报板回读
|
|
*/
|
|
AjaxResult realtimeProperty(String deviceId);
|
|
}
|
|
|