瀏覽代碼

update

production_process
cyril.tsui 2 月之前
父節點
當前提交
29258549f6
共有 1 個文件被更改,包括 2 次插入1 次删除
  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 查看文件

@@ -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);
}
}

Loading…
取消
儲存