All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.haoxuer.discover.user.controller.rest.UserFeedBackRestController Maven / Gradle / Ivy

There is a newer version: 3.3.18-20230117
Show newest version
package com.haoxuer.discover.user.controller.rest;

import com.haoxuer.discover.rest.base.ResponseObject;
import com.haoxuer.discover.user.api.apis.UserFeedBackApi;
import com.haoxuer.discover.user.api.domain.request.UserFeedBackPostRequest;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

@RestController
@RequestMapping(value = "rest")
public class UserFeedBackRestController {

  @RequestMapping(value = "/feedback/post")
  public ResponseObject post(UserFeedBackPostRequest request) {
    return api.post(request);
  }

  @Autowired
  private UserFeedBackApi api;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy