| | |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.time.LocalDate; |
| | | import java.util.List; |
| | | |
| | | /** |
| | |
| | | @Mapper |
| | | public interface InsUnqualifiedHandlerMapper extends BaseMapper<InsUnqualifiedHandler> { |
| | | |
| | | IPage<UnqualifiedHandlerVO> selectPageList(IPage<UnqualifiedHandlerVO> page, @Param("ew")QueryWrapper<UnqualifiedHandlerDto> ew); |
| | | IPage<UnqualifiedHandlerVO> selectPageList(IPage<UnqualifiedHandlerVO> page, @Param("ew")QueryWrapper<UnqualifiedHandlerDto> ew, @Param("feedbackStartDate") String feedbackStartDate,@Param("feedbackEndDate") String feedbackEndDate); |
| | | |
| | | UnqualifiedHandlerVO findById(Long id); |
| | | UnqualifiedHandlerVO findById(@Param("id") Long id); |
| | | |
| | | /** |
| | | * 查看oa流程 |
| | |
| | | * @return |
| | | */ |
| | | List<CommonOa> getOaFlow(@Param("id") Integer id); |
| | | |
| | | UnqualifiedHandlerVO findByGroupId(@Param("groupId") String groupId, @Param("handlerId") Long handlerId); |
| | | } |
| | | |
| | | |