From fee67ca8a0760315047a52fc4101a8f4f80b7a7f Mon Sep 17 00:00:00 2001 From: 13693261870 <252740454@qq.com> Date: 星期一, 11 十一月 2024 15:02:54 +0800 Subject: [PATCH] 1 --- src/main/java/com/moon/server/controller/data/StyleController.java | 10 +++------- 1 files changed, 3 insertions(+), 7 deletions(-) diff --git a/src/main/java/com/moon/server/controller/data/StyleController.java b/src/main/java/com/moon/server/controller/data/StyleController.java index 0679aa4..1bb86ee 100644 --- a/src/main/java/com/moon/server/controller/data/StyleController.java +++ b/src/main/java/com/moon/server/controller/data/StyleController.java @@ -26,13 +26,9 @@ import javax.servlet.http.HttpServletResponse; import java.util.List; -/** - * 鏍峰紡绠$悊 - * @author sws - * @date 2022-09.26 - */ @Api(tags = "鏁版嵁绠$悊\\鏍峰紡绠$悊") @RestController +@SuppressWarnings("ALL") @RequestMapping("/style") public class StyleController extends BaseController { @Autowired @@ -121,7 +117,7 @@ @SysLog() @ApiOperation(value = "鎻掑叆涓�鏉�") @ApiImplicitParams({ - @ApiImplicitParam(name = "entity", value = "瀹炰綋绫�", dataType = "com.lf.server.entity.data.StyleEntity", paramType = "body", example = "") + @ApiImplicitParam(name = "entity", value = "瀹炰綋绫�", dataType = "StyleEntity", paramType = "body", example = "") }) @PostMapping(value = "/insertStyle", produces = "application/json; charset=UTF-8") public ResponseMsg<Integer> insertStyle(@RequestBody StyleEntity entity, HttpServletRequest req) { @@ -142,7 +138,7 @@ @SysLog() @ApiOperation(value = "鎻掑叆澶氭潯") @ApiImplicitParams({ - @ApiImplicitParam(name = "list", value = "瀹炰綋绫婚泦鍚�", dataType = "com.lf.server.entity.data.StyleEntity", paramType = "body", example = "") + @ApiImplicitParam(name = "list", value = "瀹炰綋绫婚泦鍚�", dataType = "StyleEntity", paramType = "body", example = "") }) @PostMapping(value = "/insertStyles", produces = "application/json; charset=UTF-8") public ResponseMsg<Integer> insertStyles(@RequestBody List<StyleEntity> list, HttpServletRequest req) { -- Gitblit v1.9.3