You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
446 B
18 lines
446 B
1 year ago
|
package cn.teammodel.controller.admin.service;
|
||
|
|
||
|
import cn.teammodel.model.dto.admin.appraise.TimeRangeDto;
|
||
|
import cn.teammodel.model.vo.admin.DutyIndexData;
|
||
|
import cn.teammodel.model.vo.appraise.RecordVo;
|
||
|
|
||
|
import java.util.List;
|
||
|
|
||
|
/**
|
||
|
* @author winter
|
||
|
* @create 2024-02-28 15:07
|
||
|
*/
|
||
|
public interface AdminIndexDutyService {
|
||
|
DutyIndexData getIndexData(String periodId);
|
||
|
|
||
|
List<RecordVo> conditionLatestRecord(TimeRangeDto timeRangeDto);
|
||
|
}
|