| | |
| | | import com.ruoyi.common.core.dto.DepartmentDto; |
| | | import com.ruoyi.personnel.dto.PersonBasicInfoDto; |
| | | import com.ruoyi.personnel.pojo.PersonBasicInfo; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.util.List; |
| | | import java.util.Map; |
| | |
| | | * @param departmentId |
| | | * @return |
| | | */ |
| | | IPage<Map<String, Object>> selectPersonBasecInfoAndUser(Page page, String name, Integer departmentId); |
| | | IPage<Map<String, Object>> selectPersonBasecInfoAndUser(Page page, @Param("name") String name, @Param("departmentId") Integer departmentId); |
| | | } |
| | |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.ruoyi.personnel.dto.PersonSupervisePlanDto; |
| | | import com.ruoyi.personnel.pojo.PersonSupervisePlan; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | /** |
| | | * <p> |
| | |
| | | */ |
| | | public interface PersonSupervisePlanMapper extends BaseMapper<PersonSupervisePlan> { |
| | | |
| | | IPage<PersonSupervisePlanDto> pageByPerson(Page page, String organizationPerson,Integer departId); |
| | | IPage<PersonSupervisePlanDto> pageByPerson(Page page, @Param("organizationPerson") String organizationPerson, @Param("departId") Integer departId); |
| | | |
| | | } |
| | |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.ruoyi.personnel.dto.PersonTrainingDto; |
| | | import com.ruoyi.personnel.pojo.PersonTraining; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | /** |
| | | * <p> |
| | |
| | | */ |
| | | public interface PersonTrainingMapper extends BaseMapper<PersonTraining> { |
| | | |
| | | IPage<PersonTrainingDto> personTrainingSelect(Page page, String compilerName, Integer departLimsId); |
| | | IPage<PersonTrainingDto> personTrainingSelect(Page page, @Param("compilerName") String compilerName, @Param("departLimsId") Integer departLimsId); |
| | | } |