blob: 3eaf050696749c5cb9e16aebf5db5a0e96abc7bb [file] [log] [blame]
package com.pt5.pthouduan.controller;
import com.pt5.pthouduan.entity.User;
import com.pt5.pthouduan.service.InviteService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.*;
import java.util.Map;
@RestController
@RequestMapping("/invite")
public class InvitesController {
@Autowired
private InviteService inviteService;
@GetMapping("/getuserinvite")
public Map<String, Object> getUserInfo(@RequestParam String username) {
return inviteService.getInvitesByUsername(username);
}
}