package com.gkhy.assess.system.mapper;
|
|
import com.gkhy.assess.system.domain.AssEstimateSchedule;
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
import org.apache.ibatis.annotations.Mapper;
|
|
import java.util.List;
|
|
/**
|
* <p>
|
* 评价日程安排表 Mapper 接口
|
* </p>
|
*
|
* @author kzy
|
* @since 2023-12-12 10:46:54
|
*/
|
@Mapper
|
public interface AssEstimateScheduleMapper extends BaseMapper<AssEstimateSchedule> {
|
|
/**
|
* 根据项目id获取评价日程安排表
|
* @param projectId
|
* @return
|
*/
|
List<AssEstimateSchedule> getEstimateScheduleByProjectId(Long projectId);
|
|
/**
|
* 根据id批量删除评价日程
|
* @param ids
|
* @return
|
*/
|
int deleteEstimateScheduleByIds(List<Long> ids);
|
}
|