|
@@ -0,0 +1,45 @@
|
|
|
+package com.sky.controller.admin;
|
|
|
+
|
|
|
+import com.sky.result.Result;
|
|
|
+import io.swagger.annotations.Api;
|
|
|
+import io.swagger.models.auth.In;
|
|
|
+import lombok.extern.slf4j.Slf4j;
|
|
|
+import org.springframework.beans.factory.annotation.Autowired;
|
|
|
+import org.springframework.data.redis.core.RedisTemplate;
|
|
|
+import org.springframework.web.bind.annotation.*;
|
|
|
+
|
|
|
+@RestController("adminShopController")
|
|
|
+@RequestMapping("/admin/shop")
|
|
|
+@Api(tags = "店铺相关接口")
|
|
|
+@Slf4j
|
|
|
+public class ShopController {
|
|
|
+
|
|
|
+ public static final String KEY = "SHOP_STATUS";
|
|
|
+
|
|
|
+ @Autowired
|
|
|
+ private RedisTemplate redisTemplate;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 设置店铺的营业状态
|
|
|
+ * @param status
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ @PutMapping("/{status}")
|
|
|
+ public Result setStatus(@PathVariable Integer status){
|
|
|
+ log.info("设置店铺的营业状态为:{}",status == 1 ? "营业中" : "打烊中");
|
|
|
+ redisTemplate.opsForValue().set(KEY,status);
|
|
|
+ return Result.success();
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 获取店铺的营业状态
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ @GetMapping("/status")
|
|
|
+ public Result getStatus(){
|
|
|
+ Integer status = (Integer) redisTemplate.opsForValue().get(KEY);
|
|
|
+ log.info("获取店铺的营业状态:{}",status == 1 ? "营业中" : "打烊中");
|
|
|
+ return Result.success(status);
|
|
|
+ }
|
|
|
+}
|