bingbo
2023-11-24 ace7066780453a7a70dbaa3700de9a761f38ca87
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
package com.thhy.screen.modules.biz.bigscreen.mapper;
 
import com.thhy.screen.modules.biz.audio.entity.AudioGroup;
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);
 
    void insertAudioGroup(AudioGroup audioGroup);
 
    List<AudioGroup> queryGroups();
}