liuxiaolong
2019-05-09 0d1d88cdb668e75ea8609417ac18ae19947e9525
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
package com.basic.x01.securityCheck.mapper;
 
import java.util.List;
import java.util.Map;
 
import org.apache.ibatis.annotations.Param;
 
import com.basic.x01.securityCheck.model.TbSecurityCheckList;
 
public interface SendListMapper {
    
    void insertTbSecurityCheckList(TbSecurityCheckList list);
    
    void insertTbSecurityCheckListItem(
            @Param("list") TbSecurityCheckList list,
            @Param("itemIdList") List<String> itemIdList
            );
    
    void insertTbSecurityCheckListSchool(
            @Param("list") TbSecurityCheckList list,
            @Param("schoolIdList") List<String> schoolIdList
            );
    
    void updatePreviousCheckList(
            @Param("listId") String listId,
            @Param("endDate") String endDate,
            @Param("idList") List<String> idList
            );
    
    List<TbSecurityCheckList> getSecurityCheckListByOrgId(
            Map<String, Object> param);
}