mitao
2025-03-14 db0d34e944276dc913f70c374bf7c3bb75f9d451
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 {
 
}