| | |
| | | import lombok.AllArgsConstructor; |
| | | import org.springframework.web.bind.annotation.GetMapping; |
| | | import org.springframework.web.bind.annotation.RequestMapping; |
| | | import org.springframework.web.bind.annotation.RequestParam; |
| | | import org.springframework.web.bind.annotation.RestController; |
| | | |
| | | /** |
| | |
| | | private final ErrorMsgService errorMsgService; |
| | | |
| | | @AnonymousAccess |
| | | @GetMapping("/listMsg") |
| | | public ResponseVO<Object> list(BaseConditionVO conditionVO){ |
| | | @GetMapping("/lightListMsg") |
| | | public ResponseVO<Object> lightListMsg(BaseConditionVO conditionVO) { |
| | | |
| | | return ResponseUtil.success(errorMsgService.listMsg(conditionVO)); |
| | | return ResponseUtil.success(errorMsgService.lightListMsg(conditionVO)); |
| | | } |
| | | |
| | | @AnonymousAccess |
| | | @GetMapping("/C3ListMsg") |
| | | public ResponseVO<Object> C3ListMsg(BaseConditionVO conditionVO) { |
| | | |
| | | return ResponseUtil.success(errorMsgService.C3ListMsg(conditionVO)); |
| | | } |
| | | } |