package com.ruoyi.web.controller.api; import io.swagger.annotations.Api; import lombok.extern.slf4j.Slf4j; import org.springframework.validation.annotation.Validated; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; /** *

* 广告物料报价表 前端控制器 *

* * @author mitao * @since 2025-10-17 */ @Slf4j @Validated @Api(tags = {"广告物料报价表相关接口"}) @RestController @RequestMapping("/asset-ad-material-quotation") public class AssetAdMaterialQuotationController { }