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
| package com.thhy.secure.modules.biz.pipereport.mapper;
|
| import com.thhy.secure.modules.biz.pipereport.entity.PipeReportEntity;
| import org.apache.ibatis.annotations.Mapper;
|
| import java.util.List;
| import java.util.Map;
|
| /**
| * @Author QiuYuHao
| * @CreateDate 2023-10-18 8:46:07
| * 管片、钢筋笼报表mapper
| */
| @Mapper
| public interface PipeReportMapper {
|
| /**
| * 管片生产报表
| * @return
| */
| List<PipeReportEntity> getPipeReportList(Map<String,Object> map);
|
| /**
| * 钢筋笼生产报表
| * @return
| */
| List<PipeReportEntity> getSteelReportList(Map<String,Object> map);
| }
|
|