23 lines
714 B
Java
23 lines
714 B
Java
![]() |
package com.ruoyi.web.app;
|
||
|
|
||
|
import com.ruoyi.bst.fault.service.FaultService;
|
||
|
import com.ruoyi.common.core.domain.AjaxResult;
|
||
|
import org.springframework.beans.factory.annotation.Autowired;
|
||
|
import org.springframework.web.bind.annotation.GetMapping;
|
||
|
import org.springframework.web.bind.annotation.PathVariable;
|
||
|
import org.springframework.web.bind.annotation.RequestMapping;
|
||
|
import org.springframework.web.bind.annotation.RestController;
|
||
|
|
||
|
@RestController
|
||
|
@RequestMapping("app/fault")
|
||
|
public class AppFaultController {
|
||
|
|
||
|
@Autowired
|
||
|
private FaultService faultService;
|
||
|
//TODO : 前台用户查询自己提交的申报信息
|
||
|
@GetMapping("/{id}")
|
||
|
public AjaxResult get(@PathVariable Long id) {
|
||
|
|
||
|
}
|
||
|
}
|