package com.ruoyi.web.controller.api; import com.ruoyi.system.service.TFaultRepairMessageService; import io.swagger.annotations.Api; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; /** *

* 报修管理 前端控制器 *

* * @author xiaochen * @since 2025-01-17 */ @Api(tags = "报修管理") @RestController @RequestMapping("/t-fault-repair-message") public class TFaultRepairMessageController { private final TFaultRepairMessageService tFaultRepairMessageService; @Autowired public TFaultRepairMessageController(TFaultRepairMessageService tFaultRepairMessageService) { this.tFaultRepairMessageService = tFaultRepairMessageService; } }