whycxzp
2024-04-25 38d2dda917c189b7ba87d70196b99a34d50503b4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.whyc.controller;
 
import com.whyc.dto.Response;
import com.whyc.pojo.HiddenTroubleConfirmation;
import com.whyc.service.HiddenTroubleConfirmationService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
 
@RestController
@RequestMapping("hiddenTroubleConfirmation")
public class HiddenTroubleConfirmationController {
 
    @Autowired
    private HiddenTroubleConfirmationService service;
 
    public Response submit(){
        return null;
    }
 
}