张晓波
2023-10-18 8197a28db829ee2e37af6179df165703ea40ea89
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
package com.thhy.screen.modules.biz.bigscreen.mapper;
 
import com.thhy.screen.modules.biz.bigscreen.entity.*;
import org.apache.ibatis.annotations.Param;
import org.springframework.stereotype.Component;
 
import java.util.HashMap;
import java.util.List;
 
@Component
public interface BigScreenMapper {
 
    List<PipeYearCount> queryAllProject(String companyId);
 
    PipePlanActual pipePlanActual(@Param("companyId") String companyId,@Param("proId") String proId);
 
    List<PipeMonthPlanActual> pipeMonthPlanActual(String companyId);
 
    List<MaterialWeekAndMonth> materialWeekAndMonth(String companyId);
 
    List<MaterialWeekAndMonth> materialWeekMonth(String companyId);
 
    List<WaterCulInfo> WaterCulInfo(String companyId);
 
    List<RepoInfo> repoInfo(String companyId);
 
    List<SendInfo> sendInfo(String companyId);
 
    HashMap<String,Object> displayText();
 
    List<HashMap<String,Object>> monthRingNumByPro(@Param("companyId") String companyId,@Param("proId") String proId);
}