ct 2 mesiacov pred
rodič
commit
189f0eb108

+ 7 - 3
fs-user-app/src/main/java/com/fs/app/controller/StoreController.java → fs-user-app/src/main/java/com/fs/app/controller/store/StoreScrmController.java

@@ -1,5 +1,6 @@
-package com.fs.app.controller;
+package com.fs.app.controller.store;
 
+import com.fs.app.controller.AppBaseController;
 import com.fs.common.core.domain.R;
 import com.fs.common.utils.ParseUtils;
 import com.fs.his.domain.FsStore;
@@ -7,7 +8,10 @@ import com.fs.his.service.IFsStoreService;
 import com.github.pagehelper.PageInfo;
 import io.swagger.annotations.ApiOperation;
 import org.springframework.beans.factory.annotation.Autowired;
-import org.springframework.web.bind.annotation.*;
+import org.springframework.web.bind.annotation.GetMapping;
+import org.springframework.web.bind.annotation.PathVariable;
+import org.springframework.web.bind.annotation.RequestMapping;
+import org.springframework.web.bind.annotation.RestController;
 
 import java.util.List;
 
@@ -19,7 +23,7 @@ import java.util.List;
  */
 @RestController
 @RequestMapping("/app/store")
-public class StoreController extends AppBaseController
+public class StoreScrmController extends AppBaseController
 {
     @Autowired
     private IFsStoreService fsStoreService;