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;
|
}
|
|
}
|