23 lines
305 B
Plaintext
23 lines
305 B
Plaintext
|
|
package com.securityControl.task.service;
|
||
|
|
|
||
|
|
|
||
|
|
public interface TaskService {
|
||
|
|
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 站班会预警分析
|
||
|
|
*/
|
||
|
|
void getAllClassMettingWarn();
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 更新时间
|
||
|
|
* @param state
|
||
|
|
* @param nowTime
|
||
|
|
*/
|
||
|
|
void updateTask(String code,String state, String nowTime);
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
}
|