无关风月
2025-02-13 9c2b29176050996de04c2e3fa67ff77295934202
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
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;
 
/**
 * <p>
 * 报修管理 前端控制器
 * </p>
 *
 * @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;
    }
 
 
 
}