|
@@ -1,5 +1,6 @@
|
|
|
package com.miaxis.app.controller.lighting;
|
|
|
|
|
|
+import com.miaxis.common.constant.Constants;
|
|
|
import com.miaxis.common.core.controller.BaseController;
|
|
|
import com.miaxis.common.core.domain.Response;
|
|
|
import com.miaxis.common.core.page.ResponsePageInfo;
|
|
@@ -10,7 +11,10 @@ import io.swagger.annotations.Api;
|
|
|
import io.swagger.annotations.ApiOperation;
|
|
|
import io.swagger.annotations.ApiParam;
|
|
|
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;
|
|
|
|
|
@@ -22,7 +26,7 @@ import java.util.List;
|
|
|
* @date 2022-03-21
|
|
|
*/
|
|
|
@RestController
|
|
|
-@RequestMapping("/lighting/combination")
|
|
|
+@RequestMapping(Constants.OPEN_PREFIX+"/lighting/combination")
|
|
|
@Api(tags={"【H5-灯光模拟】"})
|
|
|
public class LightingCombinationController extends BaseController{
|
|
|
@Autowired
|