LeaderworkCQuery.java 1.2 KB

123456789101112131415161718192021
  1. package com.ghsc.partybuild.mapper;
  2. import com.ghsc.partybuild.vo.LeaderAssessmentVo;
  3. import com.ghsc.partybuild.vo.LeaderTeamVo;
  4. import org.apache.ibatis.annotations.Param;
  5. import java.util.Date;
  6. import java.util.List;
  7. public interface LeaderworkCQuery {
  8. List<LeaderTeamVo> selectLeaderTeamList(@Param("leaderTeamType") Integer leaderTeamType, @Param("id") String id,
  9. @Param("departmentName") String departmentName, @Param("name") String userName,
  10. @Param("position") String position, @Param("sex") String sex, @Param("party") String party,
  11. @Param("joinStartDate") Date joinStartDate, @Param("joinEndDate") Date joinEndDate,
  12. @Param("birthStartDate") Date birthStartDate, @Param("birthEndDate") Date birthEndDate);
  13. List<LeaderAssessmentVo> selectLeaderAssessmentList(@Param("id") String id, @Param("departmentName") String departmentName, @Param("userName") String userName, @Param("position") String position, @Param("assessmentResult") String assessmentResult,
  14. @Param("year") Integer year);
  15. }