1.
luofl
2025-03-15 c7c15bec9f14c4b20cfdc71d13237ef9ffc892c8
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 {
 
}