kongzy
2024-01-29 983bdb5b89932b38d08a11ad1eed6ea89d1597e1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
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);
 
}