package com.dy.pipIrrApp.inspect;
|
|
import lombok.extern.slf4j.Slf4j;
|
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.web.bind.annotation.RequestMapping;
|
import org.springframework.web.bind.annotation.RestController;
|
|
/**
|
* @author ZhuBaoMin
|
* @date 2024-09-24 10:21
|
* @LastEditTime 2024-09-24 10:21
|
* @Description
|
*/
|
|
@Slf4j
|
@RestController
|
@RequestMapping(path="inspect")
|
public class InspectCtrl {
|
@Autowired
|
private InspectSv inspectSv;
|
|
}
|