首页》工作台
This commit is contained in:
parent
769c083cdd
commit
349ae5a1c3
|
|
@ -0,0 +1,34 @@
|
|||
package com.nflg.product.material.api.user.material;
|
||||
|
||||
import io.swagger.annotations.Api;
|
||||
import io.swagger.annotations.ApiOperation;
|
||||
import nflg.product.common.vo.ResultVO;
|
||||
import org.springframework.web.bind.annotation.GetMapping;
|
||||
import org.springframework.web.bind.annotation.RequestMapping;
|
||||
import org.springframework.web.bind.annotation.RestController;
|
||||
|
||||
/**
|
||||
* packageName com.nflg.product.material.api.user.material
|
||||
*
|
||||
* @author luohj
|
||||
* @className MaterialHomeApi
|
||||
* @date 2024/7/26 0026
|
||||
* @description 主数据平台首页
|
||||
*/
|
||||
@Api(tags = "主数据平台首页")
|
||||
@RestController
|
||||
@RequestMapping("home")
|
||||
public class MaterialHomeApi {
|
||||
|
||||
/**
|
||||
*
|
||||
* @param tet
|
||||
* @return
|
||||
*/
|
||||
@GetMapping("test")
|
||||
@ApiOperation("auto-批量删除")
|
||||
public ResultVO<String> test(String tet){
|
||||
System.out.println("tet1:"+tet);
|
||||
return ResultVO.success("返回才能够");
|
||||
}
|
||||
}
|
||||
Loading…
Reference in New Issue