package com.zh.project0512.mapper;
import com.zh.project0512.model.QywxDepartmentGroupLink;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.apache.ibatis.annotations.Insert;
import org.apache.ibatis.annotations.Select;
import java.time.LocalDateTime;
import java.util.List;
import java.util.Map;
/**
*
* Mapper 接口
*
*
* @author zh
* @since 2022-06-24
*/
public interface QywxDepartmentGroupLinkMapper extends BaseMapper {
@Insert("")
void groupAddDepartment(Integer groupId, List departmentIdList, LocalDateTime creatAt);
List