...
|
...
|
@@ -893,9 +893,9 @@ public class UnionShareRest { |
|
|
|
|
|
@RequestMapping("/reject")
|
|
|
@ResponseBody
|
|
|
public UnionResponse reject(@RequestBody int uid){
|
|
|
log.info("UnionShareRest.reject uid is {}", uid);
|
|
|
unionShareService.reject(uid);
|
|
|
public UnionResponse reject(@RequestBody UnionShareUserIdentityCardBo bo){
|
|
|
log.info("UnionShareRest.reject req is {}", bo);
|
|
|
unionShareService.reject(bo.getUid());
|
|
|
return new UnionResponse(200, "驳回成功!");
|
|
|
}
|
|
|
} |
...
|
...
|
|