1.
luofl
2025-03-15 9c2e0c9cad7d48014df7fdbe0a7292f86d95f3ae
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.panzhihua.sangeshenbian.api;
 
import io.swagger.annotations.Api;
import lombok.RequiredArgsConstructor;
import org.springframework.context.annotation.Lazy;
import org.springframework.web.bind.annotation.RequestMapping;
 
/**
 * @author mitao
 * @date 2025/3/14
 */
@Api(tags = {"三个身边后台-诉求管理"})
@RequestMapping("/complaint")
@RequiredArgsConstructor(onConstructor_ = {@Lazy})
public class MgtComplaintController {
 
}