|
|
@@ -11,6 +11,7 @@ import jakarta.validation.constraints.NotBlank;
|
|
|
import org.springframework.validation.annotation.Validated;
|
|
|
import org.springframework.web.bind.annotation.PostMapping;
|
|
|
import org.springframework.web.bind.annotation.RequestBody;
|
|
|
+import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
|
|
|
|
import java.util.List;
|
|
|
@@ -22,7 +23,8 @@ import java.util.List;
|
|
|
* Version: 1.0
|
|
|
*/
|
|
|
|
|
|
-@RestController("/api/transfer")
|
|
|
+@RestController
|
|
|
+@RequestMapping("/api/transfer")
|
|
|
public class TransferController {
|
|
|
|
|
|
@Resource
|