...
|
...
|
@@ -12,15 +12,15 @@ public class FSUFohController { |
|
|
private NMS_FSU_FOH_Service fohService;
|
|
|
|
|
|
@GetMapping("list")
|
|
|
public Object list(@RequestParam(name = "pageNum",required = false,defaultValue = "1")
|
|
|
public Object list(@RequestParam(value = "pageNum",required = false,defaultValue = "1")
|
|
|
int pageNum,
|
|
|
@RequestParam(name = "pageSize",required = false,defaultValue = "10")
|
|
|
@RequestParam(value = "pageSize",required = false,defaultValue = "10")
|
|
|
int pageSize){
|
|
|
return fohService.selectAll(pageNum,pageSize);
|
|
|
}
|
|
|
|
|
|
@GetMapping("getByAutoid")
|
|
|
public Object getByAutoid(@RequestParam(name = "autoid",required = true) String autoid){
|
|
|
public Object getByAutoid(@RequestParam(value = "autoid",required = true) String autoid){
|
|
|
return fohService.selectByPrimaryKey(autoid);
|
|
|
}
|
|
|
} |
...
|
...
|
|