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获取员工列表")
@GetMapping("/by-agent/{agentId}")
@PostMapping("/by-agent/{agentId}")
@SaCheckPermission("mp:admin:agent:employee:by-agent")
public ResultBean<PageListBean<AgentEmployeeRelationResp>> getByAgent(@PathVariable Integer agentId,
@RequestBody @Validated AgentEmployeeRelationQueryReq query) {

View File

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