Programmer finance class Python quantitative trading system combat

v: ititit111222333

package com.project.rbac.controller;

import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

/ * * *@author mark
 * @date2021/6/10 0010 surely * /
@RestController
@RequestMapping("/api")
public class TestController {

    @GetMapping("/test")
    public String test(a) {
        return "test is ok"; }}Copy the code