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
40
41
42
43
44
45
46
47
48
49
50
package com.gkhy.assess.system.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.gkhy.assess.system.domain.AssInvestigation;
 
/**
 * <p>
 * 现场勘验记录表 服务类
 * </p>
 *
 * @author kzy
 * @since 2023-12-12 10:46:54
 */
public interface AssInvestigationService extends IService<AssInvestigation> {
 
    /**
     * 新增勘验记录
     * @param investigation
     * @return
     */
    int addInvestigation(AssInvestigation investigation,String requestSourceType);
 
    /**
     * 修改勘验记录
     * @param investigation
     * @return
     */
    int editInvestigation(AssInvestigation investigation);
 
    /**
     * 根据项目id获取勘验记录
     * @param projectId
     * @return
     */
    AssInvestigation getInvestigationByProjectId(Long projectId);
 
 
    /**
     * 根据id获取勘验记录
     * @param investigationId
     * @return
     */
    AssInvestigation  getInvestigationById(Long investigationId);
 
    /**
     * 项目状态流转
     * @param projectId
     */
    void doInvestigationProcess(Long projectId);
}