这个提交包含在:
caixiang
2023-02-14 09:08:21 +08:00
父节点 e0a947f050
当前提交 9d75942afb
共有 74 个文件被更改,包括 9435 次插入2 次删除

查看文件

@@ -0,0 +1,7 @@
package com.cnbm.packing;
public class Main {
public static void main(String[] args) {
System.out.println("Hello world!");
}
}

查看文件

@@ -0,0 +1,24 @@
package com.cnbm.packing.controller;
import io.swagger.annotations.Api;
import org.springframework.web.bind.annotation.*;
import com.cnbm.common.utils.Result;
/**
* @Author weihongyang
* @Date 2022/6/24 8:57 AM
* @Version 1.0
*/
@RestController
@RequestMapping("/packing")
public class TestController {
@GetMapping("get")
public Result<Integer> get(){
return new Result<Integer>().ok(1);
}
@PostMapping("get2")
public Result<Integer> get2(){
return new Result<Integer>().ok(2);
}
}