26 lines
641 B
Java
26 lines
641 B
Java
package com.muyu.controller;
|
|
|
|
import com.muyu.common.Result;
|
|
import org.springframework.web.bind.annotation.PostMapping;
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
|
|
/**
|
|
* @author DongZl
|
|
* @description: 车辆上线默认类
|
|
* @Date 2023-11-30 下午 02:59
|
|
*/
|
|
@RestController
|
|
@RequestMapping("/verify")
|
|
public class VerifyController {
|
|
|
|
/**
|
|
* 新增车辆默认上线主题
|
|
* @return 默认返回test
|
|
*/
|
|
@PostMapping("/vehicleConnection")
|
|
public Result<String> vehicleConnection(){
|
|
return Result.success("test");
|
|
}
|
|
}
|