xuhy
2025-02-13 130633ecb953588a3ee52d305302adae211cb34c
ruoyi-admin/src/main/java/com/ruoyi/web/controller/api/TFaultRepairMessageController.java
@@ -1,6 +1,9 @@
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;
@@ -13,9 +16,19 @@
 * @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;
    }
}