fg电池监控平台的达梦数据库版本
whycxzp
2024-11-12 ab33c86571fb15516aab7960d123bfc34c291bc9
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;
    }
 
}