package com.mini.mybigscreen.biz.controller; import com.mini.mybigscreen.Model.Message; import com.mini.mybigscreen.Model.Result; import com.mini.mybigscreen.biz.service.HomeModuleService; import jakarta.annotation.Resource; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.PostMapping; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; /** *
* 前端控制器 *
* * @author gaoxq * @since 2026-02-27 */ @RestController @RequestMapping("/biz/homeModule") public class HomeModuleController { @Resource private HomeModuleService moduleService; @GetMapping("list") public Result> getList() { return Result.success(moduleService.list()); } public Result