| | |
| | | private final ErrorMsgService errorMsgService; |
| | | |
| | | @AnonymousAccess |
| | | @GetMapping("/listMsg") |
| | | public ResponseVO<Object> list(BaseConditionVO conditionVO, @RequestParam(value = "type", required = false) String type) { |
| | | @GetMapping("/lightListMsg") |
| | | public ResponseVO<Object> lightListMsg(BaseConditionVO conditionVO) { |
| | | |
| | | return ResponseUtil.success(errorMsgService.listMsg(conditionVO, type)); |
| | | return ResponseUtil.success(errorMsgService.lightListMsg(conditionVO)); |
| | | } |
| | | |
| | | @AnonymousAccess |
| | | @GetMapping("/C3ListMsg") |
| | | public ResponseVO<Object> C3ListMsg(BaseConditionVO conditionVO) { |
| | | |
| | | return ResponseUtil.success(errorMsgService.C3ListMsg(conditionVO)); |
| | | } |
| | | } |