|
@@ -0,0 +1,60 @@
|
|
|
+package cn.iocoder.yudao.module.promotion.controller.app.diy;
|
|
|
+
|
|
|
+import cn.iocoder.yudao.framework.common.pojo.CommonResult;
|
|
|
+import cn.iocoder.yudao.module.promotion.controller.app.diy.vo.AppDiyTemplatePropertyRespVO;
|
|
|
+import cn.iocoder.yudao.module.promotion.convert.diy.DiyTemplateConvert;
|
|
|
+import cn.iocoder.yudao.module.promotion.dal.dataobject.diy.DiyPageDO;
|
|
|
+import cn.iocoder.yudao.module.promotion.dal.dataobject.diy.DiyTemplateDO;
|
|
|
+import cn.iocoder.yudao.module.promotion.service.diy.DiyPageService;
|
|
|
+import cn.iocoder.yudao.module.promotion.service.diy.DiyTemplateService;
|
|
|
+import io.swagger.v3.oas.annotations.Operation;
|
|
|
+import io.swagger.v3.oas.annotations.Parameter;
|
|
|
+import io.swagger.v3.oas.annotations.tags.Tag;
|
|
|
+import org.springframework.validation.annotation.Validated;
|
|
|
+import org.springframework.web.bind.annotation.GetMapping;
|
|
|
+import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
+import org.springframework.web.bind.annotation.RequestParam;
|
|
|
+import org.springframework.web.bind.annotation.RestController;
|
|
|
+
|
|
|
+import javax.annotation.Resource;
|
|
|
+import java.util.List;
|
|
|
+
|
|
|
+import static cn.iocoder.yudao.framework.common.pojo.CommonResult.success;
|
|
|
+
|
|
|
+@Tag(name = "用户 APP - 装修模板")
|
|
|
+@RestController
|
|
|
+@RequestMapping("/promotion/diy-template")
|
|
|
+@Validated
|
|
|
+public class AppDiyTemplateController {
|
|
|
+
|
|
|
+ @Resource
|
|
|
+ private DiyTemplateService diyTemplateService;
|
|
|
+ @Resource
|
|
|
+ private DiyPageService diyPageService;
|
|
|
+
|
|
|
+ @GetMapping("/used")
|
|
|
+ @Operation(summary = "使用中的装修模板")
|
|
|
+ public CommonResult<AppDiyTemplatePropertyRespVO> getDiyTemplateProperty() {
|
|
|
+ DiyTemplateDO diyTemplate = diyTemplateService.getUsedTemplate();
|
|
|
+ return success(buildVo(diyTemplate));
|
|
|
+ }
|
|
|
+
|
|
|
+ @GetMapping("/get")
|
|
|
+ @Operation(summary = "获得装修模板")
|
|
|
+ @Parameter(name = "id", description = "编号", required = true, example = "1024")
|
|
|
+ public CommonResult<AppDiyTemplatePropertyRespVO> getDiyTemplate(@RequestParam("id") Long id) {
|
|
|
+ DiyTemplateDO diyTemplate = diyTemplateService.getDiyTemplate(id);
|
|
|
+ return success(buildVo(diyTemplate));
|
|
|
+ }
|
|
|
+
|
|
|
+ private AppDiyTemplatePropertyRespVO buildVo(DiyTemplateDO diyTemplate) {
|
|
|
+ if (diyTemplate == null) {
|
|
|
+ return null;
|
|
|
+ }
|
|
|
+ // 查询模板下的页面
|
|
|
+ List<DiyPageDO> pages = diyPageService.getDiyPageByTemplateId(diyTemplate.getId());
|
|
|
+ // 拼接返回
|
|
|
+ return DiyTemplateConvert.INSTANCE.convertPropertyVo2(diyTemplate, pages);
|
|
|
+ }
|
|
|
+
|
|
|
+}
|