|
|
@@ -149,6 +149,12 @@ public class DepartmentController extends BaseController {
|
|
|
return returnResult(0, "获取成功", organs);
|
|
|
}
|
|
|
|
|
|
+ @RequestMapping(value = "/getAllRM",method=RequestMethod.GET,produces="application/json;charset=UTF-8")
|
|
|
+ public String getAllRM(){
|
|
|
+ List<FeeStation> organs = departmentService.getAllRM();
|
|
|
+ return returnResult(0, "获取成功", organs);
|
|
|
+ }
|
|
|
+
|
|
|
@RequestMapping(value = "/getFsByDept",method=RequestMethod.GET,produces="application/json;charset=UTF-8")
|
|
|
public String getAFsByDeptId(HttpServletRequest request){
|
|
|
User u = getCurrentUser(request);
|