123456789101112131415161718192021 |
- package com.ghsc.partybuild.mapper;
- import com.ghsc.partybuild.vo.LeaderAssessmentVo;
- import com.ghsc.partybuild.vo.LeaderTeamVo;
- import org.apache.ibatis.annotations.Param;
- import java.util.Date;
- import java.util.List;
- public interface LeaderworkCQuery {
- List<LeaderTeamVo> selectLeaderTeamList(@Param("leaderTeamType") Integer leaderTeamType, @Param("id") String id,
- @Param("departmentName") String departmentName, @Param("name") String userName,
- @Param("position") String position, @Param("sex") String sex, @Param("party") String party,
- @Param("joinStartDate") Date joinStartDate, @Param("joinEndDate") Date joinEndDate,
- @Param("birthStartDate") Date birthStartDate, @Param("birthEndDate") Date birthEndDate);
- List<LeaderAssessmentVo> selectLeaderAssessmentList(@Param("id") String id, @Param("departmentName") String departmentName, @Param("userName") String userName, @Param("position") String position, @Param("assessmentResult") String assessmentResult,
- @Param("year") Integer year);
- }
|