张晓波
2023-09-19 164694c47c35d6654df69b533e8dbf8b5423efc5
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
package com.thhy.materials.modules.biz.pipeout.mapper;
 
import com.thhy.general.annotations.Idkey;
import com.thhy.materials.modules.biz.pipeout.entity.TPipeInfo;
import com.thhy.materials.modules.biz.pipeout.entity.TPipeOut;
import com.thhy.materials.modules.biz.pipeout.entity.TPipeOutPath;
import com.thhy.materials.modules.biz.pipeout.entity.TPipeOutPosition;
import com.thhy.materials.modules.biz.pipeout.entity.dto.PipeInfoDto;
import com.thhy.materials.modules.biz.pipeout.entity.dto.ProjectSizeDto;
import com.thhy.materials.modules.biz.pipeout.entity.dto.RanKingDto;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
 
import java.util.HashMap;
import java.util.List;
import java.util.Map;
 
@Mapper
public interface TPipeOutMapper {
 
    void pipeOutInsert(@Idkey("pipeOutId") Map<String, Object> values);
 
 
    void pipeOutPipeInsert(@Idkey("id") HashMap<String, Object> hashMap);
 
    List<TPipeOut> pipeOutList(Map<String, Object> values);
 
    void pipeInfoUpdate(@Param("pipeId") String pipeId,@Param("format1") String format1);
 
    TPipeOut pipeOutInfo(String pipeOutId);
 
    List<TPipeInfo> pipeOutPipeInfo(String pipeOutId);
 
    List<String> pipeSelectPipeId(String pipeOutId);
 
    void pipeInfoUpIn(String pipeId);
 
    void pipeOutPipeDel(String pipeOutId);
 
    void pipeOutDel(String pipeOutId);
 
    void pipeOutUpdate(Map<String, Object> values);
 
    String pipeOutCheck(String pipeNum);
 
    TPipeInfo pipeInfo(String pipeNum);
 
    String pipeOutShippingSum(Map<String, Object> values);
 
    String pipeOutTransportSum(Map<String, Object> values);
 
    String pipeOutCarSum(Map<String, Object> values);
 
    String pipeOutProduceSum(Map<String, Object> values);
 
    List<RanKingDto> pipeOutRanking(Map<String, Object> values);
 
    List<ProjectSizeDto> projectSize(Map<String, Object> values);
 
    List<TPipeOutPosition> pipeOutGps(String pipeOutId);
 
    void pipePathInsert(@Idkey("id") HashMap<String, Object> hashMap);
 
    void pipeOutImgDel(String pipeOutId);
 
    List<TPipeOutPath> pipeOutImgInfo(String pipeOutId);
 
    String queryPipeNumByPipeId(String pipeId);
 
    void updateRepoRecord(String pipeNum);
 
    List<PipeInfoDto> pipeInfoInList(Map<String, Object> values);
 
    String pipeOutNew(@Param("companyId") String companyId,@Param("dates") String format3);
}