package com.newfiber.api.pc.dao; import com.baomidou.mybatisplus.mapper.BaseMapper; import com.newfiber.api.pc.model.meet.AcceptAllot; import com.newfiber.api.pc.model.vo.AllotDeatilsVo; import org.apache.ibatis.annotations.Param; import org.springframework.stereotype.Repository; import java.util.List; /** * @Author:zzh * @CreateDate:2020/12/1 14:46 * @Description: */ @Repository public interface AllocMapper extends BaseMapper<AcceptAllot> { /** * 根据主键id * @param allotId * @return */ AcceptAllot selectAllotByAllotId(@Param("allotId") Integer allotId); /** * @Description: 方法是:根据调度编号查询出需要的数据 * @param: * @return: * @author: 张鸿志 * @data: 2021/2/3 14:28 */ List<AllotDeatilsVo> selectAllocDetails(@Param("list") List<Integer> allotIds); }