package com.gkhy.safePlatform.account.repository.schedule;
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
import com.gkhy.safePlatform.account.entity.schedule.ScheduleAllYearDateInfo;
|
import com.gkhy.safePlatform.account.model.dto.resp.ScheduleAllYearDateRespDTO;
|
import org.springframework.stereotype.Repository;
|
|
import java.util.List;
|
|
@Repository
|
public interface ScheduleAllYearDateRepository extends BaseMapper<ScheduleAllYearDateInfo> {
|
/**
|
* 条件查询日期信息
|
* @param scheduleAllYearDateInfo
|
* @return
|
*/
|
List<ScheduleAllYearDateRespDTO> getScheduleAllYearDate(ScheduleAllYearDateInfo scheduleAllYearDateInfo);
|
|
}
|