Helius
2021-03-12 62bf99d419e470f5556f21682d0d8ee8b9e20412
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
package com.matrix.system.hive.dao;
 
import org.apache.ibatis.annotations.Param;
 
 
 
/**
 * 定时器
* @ClassName: TimerDao
* @author jyy
* @date 2016年8月17日 下午6:19:05 
*
 */
 
 
public interface TimerDao{
    
    /**
     * 
    * @Title: openTimer 开启定时器
    * @param @param time    设定文件
    * @return void    返回类型 
    * @throws
     */
    public void openTimer(@Param("time") String time);
    
    
}