+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 搜索
+ 重置
+
+
+
+
+
+ 新增
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 修改
+ 删除
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/c32384beca854744bdf160dace5b3d79.jpg b/c32384beca854744bdf160dace5b3d79.jpg
deleted file mode 100644
index 784fbbb..0000000
Binary files a/c32384beca854744bdf160dace5b3d79.jpg and /dev/null differ
diff --git a/src/main/java/com/amms/controller/ItemCollectionController.java b/src/main/java/com/amms/controller/ItemCollectionController.java
new file mode 100644
index 0000000..402e01c
--- /dev/null
+++ b/src/main/java/com/amms/controller/ItemCollectionController.java
@@ -0,0 +1,72 @@
+package com.amms.controller;
+
+import com.github.pagehelper.PageHelper;
+import com.github.pagehelper.PageInfo;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.web.bind.annotation.*;
+import com.amms.domain.vo.Result;
+import com.amms.domain.ItemCollection;
+import com.amms.service.IItemCollectionService;
+
+import java.util.List;
+
+/**
+ * 收藏Controller
+ */
+@RestController
+@RequestMapping("/itemCollection")
+public class ItemCollectionController {
+
+ @Autowired
+ private IItemCollectionService itemCollectionService;
+
+ /**
+ * 查询收藏列表
+ */
+ @GetMapping("/list")
+ public PageInfo list(ItemCollection itemCollection, @RequestParam("pageNum") Integer pageNum, @RequestParam("pageSize") Integer pageSize) {
+ PageHelper.startPage(pageNum, pageSize);
+ List