1
2
3
4
5
6
7
8
9
10
11
12
13
14
| package com.moral.api.service;
|
| public interface HistoryFiveMinutelyService {
|
| //5分钟表创建
| void createTable(String timeUnits);
|
| //5分钟数据insert
| void insertHistoryFiveMinutely();
|
|
| void insertHistoryFiveMinutely(String yz,String mac);
|
| }
|
|