| | |
| | | import com.aps.core.service.IApsProcessRouteTempService; |
| | | import jakarta.servlet.http.HttpServletResponse; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.data.domain.Pageable; |
| | | import org.springframework.web.bind.annotation.*; |
| | | import org.springframework.web.multipart.MultipartFile; |
| | | |
| | |
| | | */ |
| | | @RequiresPermissions("processRoute:processRoute:list") |
| | | @GetMapping("/list") |
| | | public TableDataInfo list(ApsProcessRoute apsProcessRoute) |
| | | public TableDataInfo list(ApsProcessRoute apsProcessRoute, Pageable pageable) |
| | | { |
| | | // startPage(); |
| | | startPage(); |
| | | List<ApsProcessRoute> list = apsProcessRouteService.selectApsProcessRouteList(apsProcessRoute); |
| | | return getDataTable(list); |
| | | } |