linwe
2024-06-13 b636e92e32c2a698e2590210037c471e45b9c88a
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
package org.springblade.modules.eCallEventTwo.service;
 
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.extension.service.IService;
import org.springblade.modules.eCallEventTwo.dto.EcOrderDTO;
import org.springblade.modules.eCallEventTwo.dto.EcOrderParamDTO;
import org.springblade.modules.eCallEventTwo.entity.EcOrder;
import org.springblade.modules.eCallEventTwo.vo.ECallEventTwoVO;
 
import java.util.List;
import java.util.Map;
 
/**
 * EcOrderService接口
 *
 * @author ${context.author}
 * @date 2024-05-27 16:26:59
 */
public interface EcOrderService extends IService<EcOrder> {
    /**
     * 查询工单
     *
     * @param orderId 工单ID
     * @return 工单
     */
    public EcOrderDTO selectEcOrderById(Long orderId);
 
    /**
     * 查询工单列表
     *
     * @param ecOrderDTO 工单
     * @return 工单集合
     */
    public List<EcOrderDTO> selectEcOrderList(EcOrderDTO ecOrderDTO);
 
    /**
     * 新增工单
     *
     * @param ecOrderDTO 工单
     * @return 结果
     */
    public int insertEcOrder(EcOrderDTO ecOrderDTO);
 
    /**
     * 修改工单
     *
     * @param ecOrderDTO 工单
     * @return 结果
     */
    public int updateEcOrder(EcOrderDTO ecOrderDTO);
 
    /**
     * 批量删除工单
     *
     * @param ids 需要删除的数据ID
     * @return 结果
     */
    public int deleteEcOrderByIds(String ids);
 
    /**
     * 删除工单信息
     *
     * @param orderId 工单ID
     * @return 结果
     */
    public int deleteEcOrderById(Long orderId);
 
    boolean SynchronizeData(EcOrderParamDTO ecOrderParamDTO);
 
    /**
     * 单位考核指标
     * @return
     */
    List<Map<String, String>> getUnitAssessmentIndicators();
 
    /**
     * 统计工单
     * @param ecOrderParamDTO
     * @return
     */
    IPage<EcOrderDTO> getCount(IPage<EcOrderDTO> page, EcOrderParamDTO ecOrderParamDTO);
}