|
@@ -33,6 +33,7 @@ public class RegionController {
|
|
|
@PostMapping
|
|
|
public RestResponse region(@RequestBody Region region) {
|
|
|
region = regionService.getById(region.getId());
|
|
|
+ System.out.println(region);
|
|
|
Map<String, Object> regionUser = mapper.one(" u.name ",
|
|
|
" region r left join user_info u on u.user_id = r.user_id ",
|
|
|
" where r.user_id = " + region.getUserId() + " and r.id = " + region.getId());
|