package com.gkhy.assess.system.service;
|
|
import com.gkhy.assess.system.domain.AssEstimateSchedule;
|
import com.baomidou.mybatisplus.extension.service.IService;
|
|
import java.util.List;
|
|
/**
|
* <p>
|
* 评价日程安排表 服务类
|
* </p>
|
*
|
* @author kzy
|
* @since 2023-12-12 10:46:54
|
*/
|
public interface AssEstimateScheduleService extends IService<AssEstimateSchedule> {
|
/**
|
* 根据项目id获取评价日程安排
|
* @param projectId
|
* @return
|
*/
|
List<AssEstimateSchedule> getByProjectId(Long projectId);
|
|
|
/**
|
* 新增日程安排
|
* @param estimateSchedule
|
* @return
|
*/
|
int addSchedule(AssEstimateSchedule estimateSchedule);
|
|
/**
|
* 编辑日程安排
|
* @param estimateSchedule
|
* @return
|
*/
|
int editSchedule(AssEstimateSchedule estimateSchedule);
|
|
}
|