|
|
@@ -10,6 +10,7 @@ import org.springframework.util.CollectionUtils;
|
|
|
import org.springframework.web.bind.annotation.*;
|
|
|
import org.springframework.web.multipart.MultipartRequest;
|
|
|
import shop.alien.entity.result.R;
|
|
|
+import shop.alien.entity.store.StoreBusinessInfo;
|
|
|
import shop.alien.entity.store.StoreImg;
|
|
|
import shop.alien.entity.store.StoreInfo;
|
|
|
import shop.alien.entity.store.StoreInfoDraft;
|
|
|
@@ -599,6 +600,14 @@ public class StoreInfoController {
|
|
|
return R.data(storeInfoService.getDecorationDetail(id));
|
|
|
}
|
|
|
|
|
|
+ @ApiOperation(value = "门店装修-门店营业时间")
|
|
|
+ @ApiImplicitParams({@ApiImplicitParam(name = "id", value = "门店id", dataType = "Long", paramType = "query", required = true)})
|
|
|
+ @GetMapping("/getStoreInfoBusinessHours")
|
|
|
+ public R<List<StoreBusinessInfo>> getStoreInfoBusinessHours(Integer id) {
|
|
|
+ log.info("StoreInfoController.getStoreInfoBusinessHours?id={}", id);
|
|
|
+ return R.data(storeInfoService.getStoreInfoBusinessHours(id));
|
|
|
+ }
|
|
|
+
|
|
|
@ApiOperation(value = "门店装修-续签合同")
|
|
|
@PostMapping("/uploadRenewalContract")
|
|
|
public R<String> uploadRenewalContract(@RequestBody List<StoreImg> storeImgList) {
|