This commit is contained in:
caixiang
2023-02-14 09:08:21 +08:00
parent e0a947f050
commit 9d75942afb
74 changed files with 9435 additions and 2 deletions

View File

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

View File

@@ -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);
}
}