张磊磊
2023-12-04 fef815b467232a73b461fbee87e4d430a585adec
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
package com.thhy.materials.modules.biz.weigh.mapper;
 
import com.thhy.general.annotations.Idkey;
import com.thhy.materials.modules.biz.concret.entity.SysSteel;
import com.thhy.materials.modules.biz.concret.entity.dto.DicetName;
import com.thhy.materials.modules.biz.concret.entity.dto.TMinxingPlant;
import com.thhy.materials.modules.biz.concret.entity.dto.WeighDto;
import com.thhy.materials.modules.biz.helmet.entity.TDataSmock;
import com.thhy.materials.modules.biz.helmet.entity.TDataValue;
import com.thhy.materials.modules.biz.video.entity.TVideoNo;
import com.thhy.materials.modules.biz.weigh.dto.QueryWeighDto;
import com.thhy.materials.modules.biz.weigh.entity.TSuMaterialWarehouseRecord;
import com.thhy.materials.modules.biz.weigh.entity.TWeighbridge;
import com.thhy.materials.modules.biz.weigh.entity.WeighVo;
import com.thhy.materials.modules.biz.weigh.entity.dto.AssistGoodDto;
import com.thhy.materials.modules.biz.weigh.entity.dto.MaterialStockRecordDto;
import com.thhy.materials.modules.biz.weigh.entity.dto.MouldDto;
import com.thhy.materials.modules.biz.weigh.entity.dto.SteelDto;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
import org.springframework.web.bind.annotation.PostMapping;
 
import java.util.HashMap;
import java.util.List;
import java.util.Map;
 
/**
 * @Author QiuYuHao
 * @CreateDate 2023-08-29 16:31:50
 * 地磅mapper
 */
@Mapper
public interface WeighMapper {
 
    List<WeighVo> queryAll(QueryWeighDto queryWeighDto);
 
    Integer mixingPlantId();
 
    List<WeighDto> findAlltask(@Param("byId") Integer byId,@Param("dictName") String dictName);
 
    String dictIdByOne(String tradeName);
 
    List<DicetName> dictList();
 
    String forwardingUnitSelectBy(String forwardingUnit);
 
    void minxingIn(HashMap<String, Object> hashMap);
 
    List<WeighDto> findAlltaskAll(String dictName);
 
    Double selectMaterialValue(String dictId);
 
    void materialStockRecordIn(HashMap<String, Object> hashMap1);
 
    void materialStockRecordUp(@Param("dictId") String dictId,@Param("doubleValue") double doubleValue);
 
    List<TVideoNo> videoList();
 
    List<TVideoNo> videoListPage(Map<String, Object> values);
 
    List<TVideoNo> webVideoList(Map<String, Object> values);
 
    Integer mixingPlantIdNew();
 
    List<WeighDto> findAlltaskNew(@Param("byId") Integer byId,@Param("dictName") String dictName);
 
    Double selectMaterialValueNew(String dictId);
 
    void materialStockRecordInNew(HashMap<String, Object> hashMap1);
 
    void materialStockRecordUpNew(@Param("dictId") String dictId,@Param("doubleValue") double doubleValue);
 
    void minxingInNew(HashMap<String, Object> hashMap);
 
    List<WeighDto> findAlltaskAllNew(String dictName);
 
    List<TMinxingPlant> mixingPlantIsIn();
 
    Integer netWeighNew(Integer byId);
 
    void netWeighUpdateNew(@Param("byId") Integer byId,@Param("netWeight") double netWeight);
 
    List<TWeighbridge> weighbridgeList(Map<String, Object> values);
 
    List<TWeighbridge> weighbridgeListType();
 
    Double materialStockValue(String dictId);
 
    void materialStockRecordIns(HashMap<String, Object> hashMap);
 
    void weighbridgeUpdateType(Integer weighbridgeId);
 
    List<MaterialStockRecordDto> materialStockInventory();
 
    List<SteelDto> steelInventory();
 
    List<AssistGoodDto> assistGoodInventory();
 
    List<MouldDto> mouldInventory();
 
    List<SysSteel> steelType();
 
    void steelRecordIn(@Idkey("id") HashMap<String, Object> hashMap);
 
    void steelUp(@Param("steelId") String steelId,@Param("doubleValue") double doubleValue);
 
    List<TSuMaterialWarehouseRecord> materialWarehouseRecordList(Map<String, Object> values);
 
    void materialWarehouseRecordInsert(@Idkey("id") Map<String, Object> values);
 
    void materialWarehouseRecordUpdate(Map<String, Object> values);
 
    void materialWarehouseRecordDel(String id);
 
    List<TDataValue> headThingJsDateValue();
 
    TDataSmock headThingJsDateSmock();
 
    TDataValue headThingJsDateValueByOne();
 
    List<TDataValue> headThingJsDateValueMonth();
}