Procházet zdrojové kódy

update

production_process
cyril.tsui před 2 měsíci
rodič
revize
29258549f6
1 změnil soubory, kde provedl 2 přidání a 1 odebrání
  1. +2
    -1
      src/main/java/com/ffii/fpsms/modules/pickOrder/web/PickOrderController.kt

+ 2
- 1
src/main/java/com/ffii/fpsms/modules/pickOrder/web/PickOrderController.kt Zobrazit soubor

@@ -11,6 +11,7 @@ import org.springframework.data.domain.PageRequest
import org.springframework.data.domain.Pageable
import org.springframework.web.bind.annotation.GetMapping
import org.springframework.web.bind.annotation.ModelAttribute
import org.springframework.web.bind.annotation.PostMapping
import org.springframework.web.bind.annotation.RequestMapping
import org.springframework.web.bind.annotation.RequestParam
import org.springframework.web.bind.annotation.RestController
@@ -30,7 +31,7 @@ class PickOrderController(
}

@GetMapping("/getRecordByPage")
fun test(@ModelAttribute request: SearchPickOrderRequest): RecordsRes<PickOrderInfo> {
fun allPickOrdersByPage(@ModelAttribute request: SearchPickOrderRequest): RecordsRes<PickOrderInfo> {
return pickOrderService.allPickOrdersByPage(request);
}
}

Načítá se…
Zrušit
Uložit