|
|
@ -1,5 +1,7 @@ |
|
|
|
package com.epmet.datareport.controller.fact; |
|
|
|
|
|
|
|
import com.epmet.commons.tools.annotation.LoginUser; |
|
|
|
import com.epmet.commons.tools.security.dto.TokenDto; |
|
|
|
import com.epmet.commons.tools.utils.Result; |
|
|
|
import com.epmet.commons.tools.validator.ValidatorUtils; |
|
|
|
import com.epmet.datareport.service.fact.FactIndexService; |
|
|
@ -98,8 +100,9 @@ public class FactIndexController { |
|
|
|
* @author sun |
|
|
|
*/ |
|
|
|
@PostMapping("index/rootagency") |
|
|
|
public Result<RootAgencyResultDTO> rootAgency(@RequestBody RootAgencyFormDTO formDTO) { |
|
|
|
public Result<RootAgencyResultDTO> rootAgency(@LoginUser TokenDto tokenDto, @RequestBody RootAgencyFormDTO formDTO) { |
|
|
|
ValidatorUtils.validateEntity(formDTO, RootAgencyFormDTO.AddUserInternalGroup.class); |
|
|
|
formDTO.setCustomerId(tokenDto.getCustomerId()); |
|
|
|
return new Result<RootAgencyResultDTO>().ok(factIndexService.rootAgency(formDTO)); |
|
|
|
} |
|
|
|
|
|
|
|