|
@@ -22,6 +22,7 @@ import io.swagger.v3.oas.annotations.Operation;
|
|
|
import io.swagger.v3.oas.annotations.tags.Tag;
|
|
|
import org.jeecg.common.aspect.annotation.AutoLog;
|
|
|
import org.springframework.security.access.prepost.PreAuthorize;
|
|
|
+import org.jeecg.modules.adweb.theme.dto.AdwebTemplateTagDto;
|
|
|
|
|
|
/**
|
|
|
* @Description: adweb主题库
|
|
@@ -161,4 +162,15 @@ public class AdwebThemeController extends JeecgController<AdwebTheme, IAdwebThem
|
|
|
return super.importExcel(request, response, AdwebTheme.class);
|
|
|
}
|
|
|
|
|
|
+ /**
|
|
|
+ *
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ @GetMapping(value = "/getTemplateTags")
|
|
|
+ public Result<?> getTemplateTags() {
|
|
|
+
|
|
|
+
|
|
|
+ return Result.OK("");
|
|
|
+ }
|
|
|
+
|
|
|
}
|