Compare commits

...

4 Commits

2 changed files with 2 additions and 2 deletions

View File

@ -61,7 +61,7 @@ public class AdminAgentEmployeeRelationController {
} }
@Operation(summary = "根据代理商ID获取员工列表") @Operation(summary = "根据代理商ID获取员工列表")
@GetMapping("/by-agent/{agentId}") @PostMapping("/by-agent/{agentId}")
@SaCheckPermission("mp:admin:agent:employee:by-agent") @SaCheckPermission("mp:admin:agent:employee:by-agent")
public ResultBean<PageListBean<AgentEmployeeRelationResp>> getByAgent(@PathVariable Integer agentId, public ResultBean<PageListBean<AgentEmployeeRelationResp>> getByAgent(@PathVariable Integer agentId,
@RequestBody @Validated AgentEmployeeRelationQueryReq query) { @RequestBody @Validated AgentEmployeeRelationQueryReq query) {

View File

@ -36,7 +36,7 @@ import java.util.List;
@EncryptionAnnotation @EncryptionAnnotation
@DecryptionAnnotation @DecryptionAnnotation
@RequiredArgsConstructor @RequiredArgsConstructor
public class AppAgentActivityParticipantController { public class AppAgentActivityRelationController {
private final IAppAgentActivityParticipantService agentActivityParticipantService; private final IAppAgentActivityParticipantService agentActivityParticipantService;