kaiyu
2021-09-27 2a781bbf1d42191c3b8225a9973bf3d0ecccd66b
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);
}