package com.ruoyi.other.controller; import com.ruoyi.common.core.domain.R; import com.ruoyi.other.api.domain.SystemConfig; import com.ruoyi.other.service.SystemConfigService; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; import io.swagger.annotations.Api; import io.swagger.annotations.ApiOperation; import javax.annotation.Resource; /** *
* 前端控制器 *
* * @author luodangjia * @since 2024-11-20 */ @RestController @RequestMapping("/system-config") public class SystemConfigController { @Resource private SystemConfigService systemConfigService; @GetMapping("/byType") @ApiOperation(value = "1=启动页管理,2=首页配置,3=订单包邮设置", tags = {"小程序-启动页面","小程序-首页","订单包邮配置"}) public R