package com.gkhy.assess.system.service; import com.gkhy.assess.system.domain.AssEstimateSchedule; import com.baomidou.mybatisplus.extension.service.IService; import java.util.List; /** *

* 评价日程安排表 服务类 *

* * @author kzy * @since 2023-12-12 10:46:54 */ public interface AssEstimateScheduleService extends IService { /** * 根据项目id获取评价日程安排 * @param projectId * @return */ List getByProjectId(Long projectId); /** * 新增日程安排 * @param estimateSchedule * @return */ int addSchedule(AssEstimateSchedule estimateSchedule); /** * 编辑日程安排 * @param estimateSchedule * @return */ int editSchedule(AssEstimateSchedule estimateSchedule); }