23 lines
603 B
Plaintext
23 lines
603 B
Plaintext
package com.sercurityControl.proteam.dutyTask.mapper;
|
|
|
|
import com.sercurityControl.proteam.dutyTask.domain.DutyStatisticsEntity;
|
|
import org.springframework.stereotype.Repository;
|
|
|
|
import java.util.List;
|
|
|
|
@Repository(value = "DutyStatisticsMapper")
|
|
public interface DutyStatisticsMapper {
|
|
|
|
|
|
/**
|
|
* @return java.util.List<com.sercurityControl.proteam.dutyTask.domain.DutyStatisticsEntity>
|
|
* @author cw chen
|
|
* @description 值班统计列表
|
|
* @Param entity
|
|
* @date 2022-12-22 16:33
|
|
*/
|
|
List<DutyStatisticsEntity> getDutyStatisticsList(DutyStatisticsEntity entity);
|
|
|
|
|
|
}
|