1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
| package com.moral.api.service;
|
| import com.moral.api.pojo.form.dataDisplay.MonitorPointDataDisplayForm;
|
| /**
| * @Description: 数据显示服务层接口
| * @Param:
| * @return:
| * @Author: 陈凯裕
| * @Date: 2021/9/26
| */
| public interface DataDisplayService {
|
| /**
| * @Description: 获取监测站点展示数据
| * @Param: [form]
| * @return: void
| * @Author: 陈凯裕
| * @Date: 2021/9/26
| */
| void getMonitorPointDisplayData(MonitorPointDataDisplayForm form);
| }
|
|