张晓波
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
package com.thhy.engineering.modules.biz.device.mapper;
 
import com.thhy.engineering.modules.biz.device.entity.SysDevice;
import com.thhy.engineering.modules.biz.device.entity.TMouldRecord;
import com.thhy.engineering.modules.biz.device.entity.TSteam;
import com.thhy.general.annotations.Idkey;
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 SysDeviceMapper {
    SysDevice deviceNameOrSNByOne(@Param("deviceName") String deviceName,@Param("snCode") String snCode,@Param("companyId") String companyId);
 
    void deviceInsert(@Idkey("deviceId") Map<String, Object> values);
 
    List<SysDevice> deviceList(Map<String, Object> values);
 
    SysDevice deviceInfo(String deviceId);
 
    void deviceUpdate(Map<String, Object> values);
 
    void deviceDel(String deviceId);
 
    List<String> selectBySteamIds(String deviceId);
 
    List<TSteam> steamList(Map<String, Object> values);
 
    List<SysDevice> devicePull(@Param("deviceType") String deviceType,@Param("companyId") String companyId);
 
    List<TMouldRecord> mouldList(Map<String, Object> values);
 
    void moldDataInsert(@Idkey("dataId") HashMap<String, Object> hashMap);
 
    String moldIdSelectPipeId(String rfid);
 
    void pipeInfoUpdate(@Param("pipeId") String pipeId,@Param("outMod") int i,@Param("outModTime") String format1);
 
    void pipeIdUpdate(@Param("pipeId")String pipeId,@Param("placingType") int i,@Param("placingInTime") String format1);
 
    Integer mouldMouldMn(String rfid);
 
    void mouldUpdate(@Param("rfid") String rfid, @Param("nums") int i);
 
    void pipeIdOutUpdate(@Param("pipeId")String pipeId,@Param("placingType") int i,@Param("placingOutTime") String format1);
 
    void mouldFreeUpdate(@Param("rfid") String rfid);
 
    String dataInTime(String rfid);
 
    void moldUseInsert(@Idkey("useId") HashMap<String, Object> hashMap1);
 
    String selectMouldId(String rfid);
 
    String selectMouldCheck(String modId);
 
    void updateMouldCheck(String modCheckId);
}