|
@@ -0,0 +1,28 @@
|
|
|
+package com.gree.mall.manager.controller.comlist;
|
|
|
+
|
|
|
+import com.baomidou.mybatisplus.core.metadata.IPage;
|
|
|
+import com.gree.mall.manager.helper.ResponseHelper;
|
|
|
+import com.gree.mall.manager.logic.comlist.ComListAllLogic;
|
|
|
+import com.gree.mall.manager.logic.comlist.ComListLogic;
|
|
|
+import com.gree.mall.manager.plus.entity.ComDetailLog;
|
|
|
+import com.gree.mall.manager.plus.entity.ComList;
|
|
|
+import io.swagger.annotations.Api;
|
|
|
+import io.swagger.annotations.ApiOperation;
|
|
|
+import io.swagger.annotations.ApiParam;
|
|
|
+import lombok.extern.slf4j.Slf4j;
|
|
|
+import org.springframework.beans.factory.annotation.Autowired;
|
|
|
+import org.springframework.web.bind.annotation.*;
|
|
|
+
|
|
|
+import javax.servlet.http.HttpServletRequest;
|
|
|
+import javax.servlet.http.HttpServletResponse;
|
|
|
+
|
|
|
+@Slf4j
|
|
|
+@RestController
|
|
|
+@Api(value = "通用万能列表API", tags = {"中心文件下发API"})
|
|
|
+@RequestMapping(value = "/com/list", produces = "application/json; charset=utf-8")
|
|
|
+public class ComListAllController {
|
|
|
+
|
|
|
+ @Autowired
|
|
|
+ ComListAllLogic comListAllLogic;
|
|
|
+
|
|
|
+}
|