package com.dy.pipIrrOperation.feedback;
|
|
import lombok.RequiredArgsConstructor;
|
import lombok.extern.slf4j.Slf4j;
|
import org.springframework.web.bind.annotation.RequestMapping;
|
import org.springframework.web.bind.annotation.RestController;
|
|
/**
|
* @author ZhuBaoMin
|
* @date 2024-07-29 13:42
|
* @LastEditTime 2024-07-29 13:42
|
* @Description
|
*/
|
|
@Slf4j
|
@RestController
|
@RequestMapping(path="feedback")
|
@RequiredArgsConstructor
|
public class FeedbackCtrl {
|
private final FeedbackSv feedbackSv;
|
|
}
|