|
@@ -106,11 +106,11 @@ public class UserInfoController {
|
|
|
@PostMapping("/updateDeleted")
|
|
|
@SysLogger("updateDeleted")
|
|
|
public RespDTO updateDeleted(@RequestParam String userId){
|
|
|
- Map<String,String> map = new HashMap<String, String>();
|
|
|
+ Map<String,Object> map = new HashMap<String, Object>();
|
|
|
map.put("userId", userId);
|
|
|
//TODO map.put("modifier",UserUtils.getCurrentPrincipleID());
|
|
|
map.put("modifier","5");
|
|
|
- map.put("gmtModified",DateUtil.DATE_TIME_FORMAT);
|
|
|
+ map.put("gmtModified",DateUtil.now());
|
|
|
int res= userFacade.updateDeleted(map);
|
|
|
return RespDTO.onSuc("刪除成功"+res);
|
|
|
}
|
|
@@ -208,8 +208,6 @@ public class UserInfoController {
|
|
|
userOrganizationFacade.save(userOrganization);
|
|
|
}
|
|
|
|
|
|
-
|
|
|
-
|
|
|
return RespDTO.onSuc("绑定成功");
|
|
|
}
|
|
|
//TODO
|