RosteringStaffDao.java
422 Bytes
package com.pipihelper.project.feishu.dao;
import com.pipihelper.project.feishu.entity.RosteringStaff;
import org.apache.ibatis.annotations.Mapper;
import org.springframework.web.bind.annotation.RequestParam;
import java.util.List;
import java.util.Set;
@Mapper
public interface RosteringStaffDao {
List<RosteringStaff> findAll();
List<RosteringStaff> findByNames(@RequestParam("names") Set<String> names);
}