|
@@ -166,12 +166,12 @@ public class UserController {
|
|
|
* departmentCascade 部门层叠关系字符串 默认"0"
|
|
|
*/
|
|
|
@RequestMapping("/insertUser")
|
|
|
- public HttpRespMsg insertUser(String id, @RequestParam String name, String phone,
|
|
|
+ public HttpRespMsg insertUser(String id, @RequestParam String name,String gender, String phone,
|
|
|
@RequestParam Integer roleId,@RequestParam Integer workTypeId, Double monthCost, Double cost,
|
|
|
Integer departmentId, Integer salaryType, String costApplyDate,
|
|
|
String position, String certJson,String inductionDate,String superiorId,
|
|
|
String plate1,String plate2,String plate3,String plate4,String plate5, String jobNumber, String inactiveDate) {
|
|
|
- return userService.insertUser(id, name, phone, roleId, workTypeId, monthCost, cost, departmentId, salaryType, costApplyDate,
|
|
|
+ return userService.insertUser(id, name,gender, phone, roleId, workTypeId, monthCost, cost, departmentId, salaryType, costApplyDate,
|
|
|
position, certJson, request,inductionDate,superiorId,plate1, plate2, plate3,plate4,plate5, jobNumber, inactiveDate);
|
|
|
}
|
|
|
|