24 lines
573 B
Plaintext
24 lines
573 B
Plaintext
package com.sercurityControl.proteam.dutyTask.service;
|
|
|
|
import java.util.Map;
|
|
|
|
public interface DailyDutyReportService {
|
|
/**
|
|
* @return java.util.Map<java.lang.String, java.lang.Object>
|
|
* @author cw chen
|
|
* @description 值班日报
|
|
* @Param aesCurrentDay
|
|
* @date 2022-12-23 9:57
|
|
*/
|
|
Map<String, Object> getDailyData(String aesCurrentDay) throws Exception;
|
|
|
|
/**
|
|
* @return void
|
|
* @author cw chen
|
|
* @description 值班日报数据实时刷新
|
|
* @Param
|
|
* @date 2023-03-10 17:12
|
|
*/
|
|
void refreshData();
|
|
}
|