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.
25 lines
494 B
25 lines
494 B
1 year ago
|
package com.zc.business.service;
|
||
|
|
||
|
import com.ruoyi.common.core.domain.AjaxResult;
|
||
|
import com.zc.business.domain.DcBoardPublish;
|
||
|
import com.zc.business.domain.MdDeviceData;
|
||
|
|
||
|
/**
|
||
|
* 中间库Service接口
|
||
|
*
|
||
|
* @author ruoyi
|
||
|
* @date 2024-01-03
|
||
|
*/
|
||
|
public interface IMiddleDatabaseService
|
||
|
{
|
||
|
|
||
|
/**
|
||
|
* 中间库新增设备数据
|
||
|
*
|
||
|
* @param mdDeviceData 气象检测器数据
|
||
|
* @return 结果
|
||
|
*/
|
||
|
boolean insertMiddleDatabaseDeviceData(MdDeviceData mdDeviceData);
|
||
|
|
||
|
}
|