|
|
@@ -42,10 +42,10 @@ public class DRyxxsjyController {
|
|
42
|
42
|
return new PageInfo<>(dRyxxsjyService.getPageList(pageParam));
|
|
43
|
43
|
}
|
|
44
|
44
|
|
|
45
|
|
- @GetMapping("/getById/{rybh}")
|
|
46
|
|
- @ApiOperation(value="查询员工信息详情", notes = "rybh")
|
|
47
|
|
- public DRyxxsjyVO getById(@PathVariable("rybh") String rybh) {
|
|
48
|
|
- return dRyxxsjyService.getById(rybh);
|
|
|
45
|
+ @GetMapping("/getById/{rybh}/{orgId}")
|
|
|
46
|
+ @ApiOperation(value="查询员工信息详情", notes = "rybh和orgId")
|
|
|
47
|
+ public DRyxxsjyVO getById(@PathVariable("rybh") String rybh, @PathVariable("orgId") Integer orgId) {
|
|
|
48
|
+ return dRyxxsjyService.getById(rybh, orgId);
|
|
49
|
49
|
}
|
|
50
|
50
|
|
|
51
|
51
|
}
|