feat(传感器数据感知逻辑):
This commit is contained in:
parent
c2e61ca3ca
commit
2668b9f13a
|
@ -0,0 +1,9 @@
|
|||
package com.ruoyi.board.service;
|
||||
|
||||
import com.github.yulichang.base.MPJBaseService;
|
||||
import com.ruoyi.board.domain.PresetContent;
|
||||
|
||||
public interface IPresetContentService extends MPJBaseService<PresetContent> {
|
||||
|
||||
PresetContent getOneByContentAndBoardSize(String content, String boardSize, Integer type);
|
||||
}
|
|
@ -0,0 +1,9 @@
|
|||
package com.ruoyi.board.service;
|
||||
|
||||
import com.github.yulichang.base.MPJBaseService;
|
||||
import com.ruoyi.board.domain.ReleaseRecord;
|
||||
|
||||
public interface IReleaseRecordService extends MPJBaseService<ReleaseRecord> {
|
||||
|
||||
ReleaseRecord getOneLatestByBoardId(String boardId, Integer type);
|
||||
}
|
|
@ -0,0 +1,4 @@
|
|||
package com.ruoyi.protocol.service;
|
||||
|
||||
public interface IProtocolService {
|
||||
}
|
|
@ -0,0 +1,9 @@
|
|||
package com.ruoyi.sensor.service;
|
||||
|
||||
import com.ruoyi.sensor.domain.PerceptionParams;
|
||||
|
||||
public interface ISensorDataService {
|
||||
|
||||
void perceptionParamsHandler(PerceptionParams params);
|
||||
|
||||
}
|
Loading…
Reference in New Issue