|
@@ -237,6 +237,12 @@ public class UserController {
|
|
|
return userService.getUserSalaryList(id);
|
|
|
}
|
|
|
|
|
|
+ @RequestMapping("/deleteUserSalaryById")
|
|
|
+ public HttpRespMsg deleteUserSalaryById(String id) {
|
|
|
+ HttpRespMsg httpRespMsg=new HttpRespMsg();
|
|
|
+ return userService.deleteUserSalaryById(id);
|
|
|
+ }
|
|
|
+
|
|
|
|
|
|
@RequestMapping("/setActive")
|
|
|
public HttpRespMsg setActive(String id, int isActive) {
|