张晓波
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
package com.thhy.secure.modules.biz.train.mapper;
 
import com.thhy.general.annotations.Idkey;
import com.thhy.secure.modules.biz.train.entity.OpenUserInfo;
import com.thhy.secure.modules.biz.train.entity.TSecureTrain;
import com.thhy.secure.modules.biz.train.entity.dto.*;
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 TSecureTrainMapper {
    void secureTrainInsert(@Idkey("secureId") Map<String, Object> values);
 
    void secureTrainPathInsert(@Idkey("securePathId") HashMap<String, Object> hashMap);
 
    List<TSecureTrain> secureTrainList(Map<String, Object> values);
 
    String totalsSum(@Param("secureId") String secureId,@Param("companyId") String companyId);
 
    String completesSum(String secureId);
 
    SecureTrainDto secureTrainInfo(String secureId);
 
    List<SecurePathDto> securePath(String secureId);
 
    List<SecureGroupDto> secureGroup(String secureId);
 
    List<SecureTrainDto> secureTrainPull(Map<String, Object> values);
 
    void secureTrainDel(String secureId);
 
    List<SecureGroupUserDto> secureTrainRecord(Map<String, Object> values);
 
    void secureTrainUpdate(Map<String, Object> values);
 
    void secureTrainGroupDel(String secureId);
 
    void secureTrainPathDel(String secureId);
 
    void secureTrainGroupInsert(@Idkey("secureGroupId") HashMap<String, Object> hashMap);
 
    OpenUserInfo secureTrainUserInfo(Map<String, Object> values);
 
    String platId(String userId);
 
    List<SecureTrainUserDto> secureTrainUser(Map<String, Object> values);
 
    List<String> secureRecord(String userId);
 
    void secureTrainRecordInsert(@Idkey("recordId") Map<String, Object> values);
}