张晓波
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
package com.thhy.materials.modules.biz.rebarprint.mapper;
 
import com.thhy.materials.modules.biz.rebarprint.entity.TSteelCheckRecord;
import com.thhy.materials.modules.biz.rebarprint.entity.dto.CheckDto;
import com.thhy.materials.modules.biz.rebarprint.entity.dto.ProduceDto;
import com.thhy.materials.modules.biz.rebarprint.entity.dto.ProduceInventoryDto;
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 TSteelProduceMapper {
 
    List<ProduceDto> steelProduceList(Map<String, Object> values);
 
    ProduceDto steelProduceInfo(String steelProduceId);
 
    List<ProduceInventoryDto> produceInventory(Map<String, Object> values);
 
    List<String> blockNumSelectAll(String proId);
 
    List<TSteelCheckRecord> steelProduceCheck(Map<String, Object> values);
 
    CheckDto checkInfo(String sId);
    List<ProduceInventoryDto> produceInventoryReinforcementId(Map<String, Object> values);
 
    void steelProduceFeedback(HashMap<String, Object> hashMap);
 
    List<String> checkFile(String checkId);
 
    Map<String,Object> appProduceLooping(@Param("proId")String proId,@Param("sizeId")String sizeId);
 
    String getProName(@Param("proId")String proId);
 
    List<ProduceInventoryDto> allproduceInventory(Map<String, Object> values);
    List<ProduceInventoryDto> allProduceInventoryReinforcementId(Map<String, Object> values);
}