|
@@ -567,6 +567,14 @@ public class NewPlatformApi {
|
|
@ApiOperation(value = "平台端组织机构新增-企业")
|
|
@ApiOperation(value = "平台端组织机构新增-企业")
|
|
@RequestMapping(value = "/organizationSave", method = RequestMethod.POST)
|
|
@RequestMapping(value = "/organizationSave", method = RequestMethod.POST)
|
|
public CommonResult<String> organizationSave(@RequestBody Organization request) {
|
|
public CommonResult<String> organizationSave(@RequestBody Organization request) {
|
|
|
|
+ String phone = request.getPhone();
|
|
|
|
+ String name = request.getName();
|
|
|
|
+ if (StringUtils.isBlank(phone)){
|
|
|
|
+ return CommonResult.failed("联系方式不能为空");
|
|
|
|
+ }
|
|
|
|
+ if (StringUtils.isBlank(name)){
|
|
|
|
+ return CommonResult.failed("企业名称不能为空");
|
|
|
|
+ }
|
|
SystemAdmin systemAdmin = SecurityUtil.getLoginUserVo().getUser();
|
|
SystemAdmin systemAdmin = SecurityUtil.getLoginUserVo().getUser();
|
|
organizationService.saveOrganization(request, systemAdmin);
|
|
organizationService.saveOrganization(request, systemAdmin);
|
|
return CommonResult.success("操作成功");
|
|
return CommonResult.success("操作成功");
|