| | |
| | | import com.ruoyi.common.utils.SecurityUtils; |
| | | import io.swagger.annotations.Api; |
| | | import io.swagger.annotations.ApiOperation; |
| | | import lombok.AllArgsConstructor; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.web.bind.annotation.PostMapping; |
| | | import org.springframework.web.bind.annotation.RequestBody; |
| | |
| | | @Api(tags = "用户设备绑定") |
| | | @RestController |
| | | @RequestMapping("/system/client") |
| | | @AllArgsConstructor |
| | | public class SysUserClientController extends BaseController { |
| | | |
| | | @Autowired |
| | | private SysUserClientService sysUserClientService; |
| | | |
| | | /** |